Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -115,7 +115,7 @@ def print_existing_models():
|
|
115 |
requests= load_dataset("EnergyStarAI/requests_debug", split="test", token=TOKEN)
|
116 |
requests_dset = requests.to_pandas()
|
117 |
model_df= requests_dset[['model','status']]
|
118 |
-
model_df = model_df[model_df['status' == 'COMPLETED']
|
119 |
return model_df
|
120 |
|
121 |
def highlight_cols(x):
|
|
|
115 |
requests= load_dataset("EnergyStarAI/requests_debug", split="test", token=TOKEN)
|
116 |
requests_dset = requests.to_pandas()
|
117 |
model_df= requests_dset[['model','status']]
|
118 |
+
model_df = model_df[model_df['status'] == 'COMPLETED']
|
119 |
return model_df
|
120 |
|
121 |
def highlight_cols(x):
|