dnaihao commited on
Commit
ba2e278
·
1 Parent(s): 609fd32
Files changed (1) hide show
  1. utils.py +1 -0
utils.py CHANGED
@@ -98,6 +98,7 @@ You can generate an output file in the above format using the evaluation script
98
  def get_df():
99
  repo = Repository(local_dir=SUBMISSION_NAME, clone_from=SUBMISSION_URL, use_auth_token=HF_TOKEN)
100
  repo.git_pull()
 
101
  df = pd.read_csv(CSV_DIR)
102
  df['Model Size(B)'] = df['Model Size(B)'].apply(process_model_size)
103
  df = df.sort_values(by=['Overall'], ascending=False)
 
98
  def get_df():
99
  repo = Repository(local_dir=SUBMISSION_NAME, clone_from=SUBMISSION_URL, use_auth_token=HF_TOKEN)
100
  repo.git_pull()
101
+ print(os.listdir("."))
102
  df = pd.read_csv(CSV_DIR)
103
  df['Model Size(B)'] = df['Model Size(B)'].apply(process_model_size)
104
  df = df.sort_values(by=['Overall'], ascending=False)