LouisThomson commited on
Commit
7083d01
1 Parent(s): af9e50a

Changed output eval.py to evaluation.py

Browse files

Just changed the name of the csv file outputted to in order to match the naming convention for the files uploaded.

Files changed (1) hide show
  1. clean.py +1 -1
clean.py CHANGED
@@ -147,7 +147,7 @@ train_df = train_df[:train_size]
147
  # print("Saving to disk...")
148
  with open("train.csv", "w") as f:
149
  train_df.to_csv(f)
150
- with open("eval.csv", "w") as f:
151
  eval_df.to_csv(f)
152
  with open("test.csv", "w") as f:
153
  test_df.to_csv(f)
 
147
  # print("Saving to disk...")
148
  with open("train.csv", "w") as f:
149
  train_df.to_csv(f)
150
+ with open("evaluation.csv", "w") as f:
151
  eval_df.to_csv(f)
152
  with open("test.csv", "w") as f:
153
  test_df.to_csv(f)