Bekhouche commited on
Commit
9e36d13
·
1 Parent(s): 505d963

fix models path

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -92,7 +92,7 @@ if not jsonl_results.exists():
92
  raise Exception(f"JSONL file {jsonl_results} does not exist locally")
93
 
94
  # Load models list with paper and year information
95
- models_dict = load_models_list("/data3/salah/ImageNet-1k_leaderboard/models_list.json")
96
 
97
  # Get jsonl with data and parse columns
98
  original_df = read_jsonl_to_dataframe(jsonl_results, models_dict)
 
92
  raise Exception(f"JSONL file {jsonl_results} does not exist locally")
93
 
94
  # Load models list with paper and year information
95
+ models_dict = load_models_list("models_list.json")
96
 
97
  # Get jsonl with data and parse columns
98
  original_df = read_jsonl_to_dataframe(jsonl_results, models_dict)