oops
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ def get_model_names(task_data):
|
|
29 |
#TODO: add link to results in model card of each model
|
30 |
task_df= pd.read_csv('data/energy/'+task_data)
|
31 |
task_df=task_df.drop_duplicates(subset=['model'])
|
32 |
-
task_df['model'] = task_df['model'].apply(
|
33 |
model_names = task_df[['model']]
|
34 |
return model_names
|
35 |
|
|
|
29 |
#TODO: add link to results in model card of each model
|
30 |
task_df= pd.read_csv('data/energy/'+task_data)
|
31 |
task_df=task_df.drop_duplicates(subset=['model'])
|
32 |
+
task_df['model'] = task_df['model'].apply(make_link)
|
33 |
model_names = task_df[['model']]
|
34 |
return model_names
|
35 |
|