Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -110,16 +110,11 @@ def add_new_eval(
|
|
110 |
gr.Info("Starting compute space at %s " % COMPUTE_SPACE)
|
111 |
return start_compute_space()
|
112 |
|
113 |
-
def color_cols(x):
|
114 |
-
df = x.copy()
|
115 |
-
df.loc[:, :] = 'color: purple'
|
116 |
-
df[['B', 'C', 'E']] = 'color: green'
|
117 |
-
return df
|
118 |
|
119 |
def print_existing_models():
|
120 |
requests= load_dataset("EnergyStarAI/requests_debug", split="test", token=TOKEN)
|
121 |
requests_dset = requests.to_pandas()
|
122 |
-
model_df= requests_dset[['model','
|
123 |
return model_df
|
124 |
|
125 |
def highlight_cols(x):
|
|
|
110 |
gr.Info("Starting compute space at %s " % COMPUTE_SPACE)
|
111 |
return start_compute_space()
|
112 |
|
|
|
|
|
|
|
|
|
|
|
113 |
|
114 |
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 |
return model_df
|
119 |
|
120 |
def highlight_cols(x):
|