Spaces:
Running
Running
oops
Browse files
app.py
CHANGED
|
@@ -12,7 +12,9 @@ def get_plots(task_data):
|
|
| 12 |
|
| 13 |
def get_model_names(task_data):
|
| 14 |
task_df= pd.read_csv(task_data)
|
| 15 |
-
|
|
|
|
|
|
|
| 16 |
|
| 17 |
demo = gr.Blocks()
|
| 18 |
|
|
|
|
| 12 |
|
| 13 |
def get_model_names(task_data):
|
| 14 |
task_df= pd.read_csv(task_data)
|
| 15 |
+
model_names = task_df['model'].tolist()
|
| 16 |
+
print(model_names)
|
| 17 |
+
return model_names
|
| 18 |
|
| 19 |
demo = gr.Blocks()
|
| 20 |
|