Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -706,7 +706,7 @@ with gr.Blocks(theme='shivi/calm_seafoam', css_paths='style.css', js=js_func) as
|
|
706 |
model_image_path = next((m["image_path"] for m in model_list_dict if m["code"] == model), None)
|
707 |
yield gr.Markdown(visible=False), gr.Image(model_image_path), gr.Markdown(), gr.Markdown(), gr.Markdown(), metrics_conc, *[predictions_dict[model][columns_to_visulize] for model in model_list]
|
708 |
count=1
|
709 |
-
for _, row in predictions_dict[model].iterrows():
|
710 |
#for index, row in target_df.iterrows():
|
711 |
if (reset_flag == False):
|
712 |
percent_complete = round(count / len(predictions_dict[model]) * 100, 2)
|
|
|
706 |
model_image_path = next((m["image_path"] for m in model_list_dict if m["code"] == model), None)
|
707 |
yield gr.Markdown(visible=False), gr.Image(model_image_path), gr.Markdown(), gr.Markdown(), gr.Markdown(), metrics_conc, *[predictions_dict[model][columns_to_visulize] for model in model_list]
|
708 |
count=1
|
709 |
+
for _, row in predictions_dict[model].head(100).iterrows():
|
710 |
#for index, row in target_df.iterrows():
|
711 |
if (reset_flag == False):
|
712 |
percent_complete = round(count / len(predictions_dict[model]) * 100, 2)
|