Skip to content

Commit

Permalink
Fix import order in metrics.py
Browse files Browse the repository at this point in the history
Signed-off-by: Kartik Choudhary <[email protected]>
  • Loading branch information
kartikc727 committed Jan 30, 2024
1 parent b2e9540 commit eeefe71
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@

"""Compute AI-assisted metrics for generative text models."""

import numpy as np
import logging
from pathlib import Path

import numpy as np

module_logger = logging.getLogger(__name__)
module_logger.setLevel(logging.INFO)

Expand Down

0 comments on commit eeefe71

Please sign in to comment.