Update app.py
Browse files
app.py
CHANGED
|
@@ -594,14 +594,14 @@ def create_interface():
|
|
| 594 |
return metrics_df, None, None, None, None, None, None
|
| 595 |
|
| 596 |
|
| 597 |
-
plot_outputs = [None] *
|
| 598 |
if calibration_plots:
|
| 599 |
-
for i, plot in enumerate(calibration_plots[:
|
| 600 |
plot_outputs[i] = plot
|
| 601 |
|
| 602 |
return (metrics_df, calibration_df,
|
| 603 |
plot_outputs[0], plot_outputs[1], plot_outputs[2],
|
| 604 |
-
plot_outputs[3], plot_outputs[4])
|
| 605 |
|
| 606 |
|
| 607 |
process_btn.click(
|
|
|
|
| 594 |
return metrics_df, None, None, None, None, None, None
|
| 595 |
|
| 596 |
|
| 597 |
+
plot_outputs = [None] * 6
|
| 598 |
if calibration_plots:
|
| 599 |
+
for i, plot in enumerate(calibration_plots[:6]):
|
| 600 |
plot_outputs[i] = plot
|
| 601 |
|
| 602 |
return (metrics_df, calibration_df,
|
| 603 |
plot_outputs[0], plot_outputs[1], plot_outputs[2],
|
| 604 |
+
plot_outputs[3], plot_outputs[4], plot_outputs[5])
|
| 605 |
|
| 606 |
|
| 607 |
process_btn.click(
|