saherPervaiz commited on
Commit
3cd97b7
·
verified ·
1 Parent(s): 4409f0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=5000),
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(),