fix models path
Browse files
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("
|
| 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)
|