Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
def get_keys(d, values):
|
| 2 |
return [k for k, v in d.items() if v in values]
|
| 3 |
-
pickle_file_path = '
|
| 4 |
|
| 5 |
model_results = pd.read_pickle(pickle_file_path)
|
| 6 |
|
| 7 |
-
csv_file_path = '
|
| 8 |
|
| 9 |
model_results_csv = pd.read_csv(csv_file_path)
|
| 10 |
|
|
|
|
| 1 |
def get_keys(d, values):
|
| 2 |
return [k for k, v in d.items() if v in values]
|
| 3 |
+
pickle_file_path = 'model_results1.csv'
|
| 4 |
|
| 5 |
model_results = pd.read_pickle(pickle_file_path)
|
| 6 |
|
| 7 |
+
csv_file_path = 'the_model_results.csv'
|
| 8 |
|
| 9 |
model_results_csv = pd.read_csv(csv_file_path)
|
| 10 |
|