forked from TheAlgorithms/Python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom_forest_classifier.py
More file actions
Latest commit
44 lines (35 loc) · 1.12 KB
/
Copy pathrandom_forest_classifier.py
File metadata and controls
44 lines (35 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Random Forest Classifier Example
frommatplotlibimportpyplotasplt
fromsklearn.datasetsimportload_iris
fromsklearn.ensembleimportRandomForestClassifier
fromsklearn.metricsimportplot_confusion_matrix
fromsklearn.model_selectionimporttrain_test_split
defmain():
"""
Random Forest Classifier Example using sklearn function.
Iris type dataset is used to demonstrate algorithm.
"""
# Load Iris dataset
iris=load_iris()
# Split dataset into train and test data
x=iris["data"] # features
y=iris["target"]
x_train, x_test, y_train, y_test=train_test_split(
x, y, test_size=0.3, random_state=1
)
# Random Forest Classifier
rand_for=RandomForestClassifier(random_state=42, n_estimators=100)
rand_for.fit(x_train, y_train)
# Display Confusion Matrix of Classifier
plot_confusion_matrix(
rand_for,
x_test,
y_test,
display_labels=iris["target_names"],
cmap="Blues",
normalize="true",
)
plt.title("Normalized Confusion Matrix - IRIS Dataset")
plt.show()
if__name__=="__main__":
main()