Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -75,7 +75,7 @@ if uploaded_file is not None:
|
|
75 |
|
76 |
# ROC Curve
|
77 |
st.write("ROC Curve:")
|
78 |
-
plt.figure(figsize=(
|
79 |
plt.plot(fpr, tpr, color='blue', lw=2, label='ROC Curve (AUC = %0.2f)' % roc_auc)
|
80 |
plt.plot([0, 1], [0, 1], color='gray', lw=1, linestyle='--')
|
81 |
plt.xlim([0.0, 1.0])
|
|
|
75 |
|
76 |
# ROC Curve
|
77 |
st.write("ROC Curve:")
|
78 |
+
plt.figure(figsize=(8, 6))
|
79 |
plt.plot(fpr, tpr, color='blue', lw=2, label='ROC Curve (AUC = %0.2f)' % roc_auc)
|
80 |
plt.plot([0, 1], [0, 1], color='gray', lw=1, linestyle='--')
|
81 |
plt.xlim([0.0, 1.0])
|