felipekitamura commited on
Commit
973d230
·
verified ·
1 Parent(s): 450284e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -67,9 +67,10 @@ 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 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", 1000, 72, "DEFAULT"]],
74
  cache_examples=False
75
  )
 
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.\n"
71
+ "'y_true': reference standard (0s or 1s).\n"
72
+ "'y_pred': model prediction (continuous value between 0 and 1).\n",
73
+
74
  examples=[["scores.csv", 1000, 72, "DEFAULT"]],
75
  cache_examples=False
76
  )