EstebanDC commited on
Commit
5ceeac2
1 Parent(s): c554c4e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -29,7 +29,7 @@ model1= model1.fit(X_train, y_train)
29
  model2 =GradientBoostingRegressor(learning_rate=0.007, max_depth=2,n_estimators=1650, random_state=100,min_samples_split=9,max_features= 'log2')
30
  model2= model2.fit(X_train, y_train)
31
  model3 =RandomForestRegressor(n_estimators= 1000,min_samples_split= 11, min_samples_leaf= 1,
32
- max_features= 1.0,max_depth= 6,bootstrap= True,random_state=100)
33
  model3= model3.fit(X_train, y_train)
34
  level1 = list()
35
  level1.append(('ET', model1))
 
29
  model2 =GradientBoostingRegressor(learning_rate=0.007, max_depth=2,n_estimators=1650, random_state=100,min_samples_split=9,max_features= 'log2')
30
  model2= model2.fit(X_train, y_train)
31
  model3 =RandomForestRegressor(n_estimators= 1000,min_samples_split= 11, min_samples_leaf= 1,
32
+ max_features= None,max_depth= 6,bootstrap= True,random_state=100)
33
  model3= model3.fit(X_train, y_train)
34
  level1 = list()
35
  level1.append(('ET', model1))