Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -135,7 +135,7 @@ if uploaded_file is not None:
|
|
| 135 |
if y.dtype == 'object' or len(y.unique()) <= 10: # Classification
|
| 136 |
st.subheader("Classification Model Training")
|
| 137 |
classifiers = {
|
| 138 |
-
'Logistic Regression': LogisticRegression(max_iter=
|
| 139 |
'Decision Tree': DecisionTreeClassifier(),
|
| 140 |
'Random Forest': RandomForestClassifier(),
|
| 141 |
'Support Vector Machine (SVM)': SVC(),
|
|
|
|
| 135 |
if y.dtype == 'object' or len(y.unique()) <= 10: # Classification
|
| 136 |
st.subheader("Classification Model Training")
|
| 137 |
classifiers = {
|
| 138 |
+
'Logistic Regression': LogisticRegression(max_iter=2000),
|
| 139 |
'Decision Tree': DecisionTreeClassifier(),
|
| 140 |
'Random Forest': RandomForestClassifier(),
|
| 141 |
'Support Vector Machine (SVM)': SVC(),
|