Skip to content

Commit 12caca1

Browse files
authored
fix random seed
1 parent 9bd1323 commit 12caca1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

classification_task/benchmark_classification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def main():
6565
args.dir = exp_configs["dir_path"]
6666
system_prompt = exp_configs["system_prompt"]
6767
max_tokens = exp_configs["max_mcq_tokens"]
68-
68+
random.seed(41)
6969
# Load necessary data
7070
turns_data = load_turns_data(args)
7171
with open(f"{args.dir}/benchmark_dataset/mcq_options/{args.topic}.json", "r") as infile:

0 commit comments

Comments
 (0)