We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59600b8 commit 29248b5Copy full SHA for 29248b5
train/code/main.py
@@ -133,7 +133,8 @@ def train(train_file_path,
133
134
logging.info(f"Readin evaluation data form: {input_base_dir}/eval.csv")
135
136
-eval_data = pd.read_csv(input_base_dir + "/eval.csv")
+eval_path = os.path.join(input_base_dir, 'eval.csv')
137
+eval_data = pd.read_csv(eval_path)
138
139
logging.warning("Seperating wrong and correct data...")
140
wrong_name = eval_data["wrong"]
0 commit comments