shivapriyasom commited on
Commit
7d3ca17
·
verified ·
1 Parent(s): 98438a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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] * 5
598
  if calibration_plots:
599
- for i, plot in enumerate(calibration_plots[:5]):
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(