sasha HF Staff commited on
Commit
fe4deae
·
1 Parent(s): 690a169

removing duplicates

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -24,6 +24,7 @@ def get_model_names(task_data):
24
  #TODO: add link to results in model card of each model
25
  task_df= pd.read_csv('data/energy/'+task_data)
26
  model_names = task_df[['model']]
 
27
  return model_names
28
 
29
 
 
24
  #TODO: add link to results in model card of each model
25
  task_df= pd.read_csv('data/energy/'+task_data)
26
  model_names = task_df[['model']]
27
+ model_names = list(set(model_names))
28
  return model_names
29
 
30