DevBM commited on
Commit
af4a75a
·
verified ·
1 Parent(s): 569edb3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -36,10 +36,10 @@ if not st.session_state.models:
36
 
37
  # models
38
  models = {
39
- # "SVM": SVC(kernel='linear'),
40
  "Logistic Regression": LogisticRegression(max_iter=1000),
41
- # "Random Forest": RandomForestClassifier(n_estimators=10),
42
- # "Gradient Boosting": GradientBoostingClassifier()
43
  }
44
 
45
  for name, model in models.items():
 
36
 
37
  # models
38
  models = {
39
+ "SVM": SVC(kernel='linear'),
40
  "Logistic Regression": LogisticRegression(max_iter=1000),
41
+ "Random Forest": RandomForestClassifier(n_estimators=10),
42
+ "Gradient Boosting": GradientBoostingClassifier()
43
  }
44
 
45
  for name, model in models.items():