Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -12,7 +12,7 @@ def get_plots(task_data):
|
|
12 |
|
13 |
def get_model_names(task_data):
|
14 |
task_df= pd.read_csv(task_data)
|
15 |
-
model_names = task_df['model']
|
16 |
print(model_names)
|
17 |
return model_names
|
18 |
|
|
|
12 |
|
13 |
def get_model_names(task_data):
|
14 |
task_df= pd.read_csv(task_data)
|
15 |
+
model_names = task_df[['model']]
|
16 |
print(model_names)
|
17 |
return model_names
|
18 |
|