Skip to content

Instantly share code, notes, and snippets.

@FranciscusRenatus
Created June 29, 2017 15:51
Show Gist options
  • Save FranciscusRenatus/0dab06d0cff51354765a00d4bce84326 to your computer and use it in GitHub Desktop.
Save FranciscusRenatus/0dab06d0cff51354765a00d4bce84326 to your computer and use it in GitHub Desktop.
# Fitting Random Forest Classification to the Training set
from sklearn.ensemble import RandomForestClassifier
classifier = RandomForestClassifier(n_estimators = 10, criterion = 'entropy', random_state = 0)
classifier.fit(X_train, y_train)
# Predicting the Test set results
y_pred = classifier.predict(X_test)
# Making the Confusion Matrix
from sklearn.metrics import confusion_matrix
cm = confusion_matrix(y_test, y_pred)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment