“Importer RandomForestClassifier” Réponses codées

Sklearn Random Forest

from sklearn.ensemble import RandomForestClassifier


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

clf.fit(X, y)

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

Importer RandomForestClassifier

from sklearn.ensemble import RandomForestClassifier
Frantic Flatworm

Sklearn Random Forest

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

Réponses similaires à “Importer RandomForestClassifier”

Questions similaires à “Importer RandomForestClassifier”

Plus de réponses similaires à “Importer RandomForestClassifier” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code