“SKLELN Losowy regresor lasu” Kod odpowiedzi

SKLELN Losowy regresor lasu

from sklearn.ensemble import RandomForestRegressor


clf = RandomForestRegressor(max_depth=2, random_state=0)

clf.fit(X, y)

print(clf.predict([[0, 0, 0, 0]]))
vcwild

Jak używać losowego drzewa w Pythonie

from sklearn.model_selection import train_test_split

X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=0)
Wide-eyed Whale

Sklearn losowy las

from sklearn.ensemble import RandomForestClassifier
from sklearn.datasets import make_classification


X, y = make_classification(n_samples=1000, n_features=4,
                            n_informative=2, n_redundant=0,
                            random_state=0, shuffle=False)
clf = RandomForestClassifier(max_depth=2, random_state=0)

clf.fit(X, y)

print(clf.predict([[0, 0, 0, 0]]))
vcwild

Odpowiedzi podobne do “SKLELN Losowy regresor lasu”

Pytania podobne do “SKLELN Losowy regresor lasu”

Więcej pokrewnych odpowiedzi na “SKLELN Losowy regresor lasu” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu