Horje
randomforestregressor in sklearn Code Example
randomforestregressor in sklearn
from sklearn.ensemble import RandomForestRegressor
from sklearn.datasets import make_regression
X, y = make_regression(n_features=4, n_informative=2,
                       random_state=0, shuffle=False)
regr = RandomForestRegressor(max_depth=2, random_state=0)
regr.fit(X, y)

print(regr.predict([[0, 0, 0, 0]]))




Python

Related
drop nulll python Code Example drop nulll python Code Example
keras declare functional model Code Example keras declare functional model Code Example
increase axis ticks pyplot Code Example increase axis ticks pyplot Code Example
sha512 python Code Example sha512 python Code Example
pop function in python Code Example pop function in python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7