Skip to content

Commit

Permalink
change import orders
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyamalaviya committed Nov 9, 2024
1 parent e6efbd2 commit 32f9e96
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions contexteval/main/generate_query_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,23 @@
--output_path=${OUTPUT_PATH}
"""

from absl import app
from absl import flags
import models
import random
import sys

from absl import app
from absl import flags
import tqdm
sys.path.append('contexteval/common')

import models
import example_utils
import jsonl_utils
import tsv_utils

sys.path.append('contexteval/common')

random.seed(423)


_INPUT_PATH = flags.DEFINE_string(
"input_path", "", "Path to the input file."
)
Expand Down

0 comments on commit 32f9e96

Please sign in to comment.