felipekitamura commited on
Commit
adcee14
·
verified ·
1 Parent(s): efdb24b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -67,7 +67,9 @@ iface = gr.Interface(
67
  gr.Image(label="Metrics Summary")
68
  ],
69
  title="Binary Classification Report Generator",
70
- description="Upload a CSV file containing 'y_true' and 'y_pred' columns to generate a comprehensive classification report with 6 figures.",
 
 
71
  examples=["scores.csv"],
72
  cache_examples=False
73
  )
 
67
  gr.Image(label="Metrics Summary")
68
  ],
69
  title="Binary Classification Report Generator",
70
+ description="Upload a CSV file containing 'y_true' and 'y_pred' columns to generate a binary classification report."
71
+ "'y_true': reference standard (0s or 1s)."
72
+ "'y_pred': model prediction (continuous value between 0 and 1)",
73
  examples=["scores.csv"],
74
  cache_examples=False
75
  )