diff --git a/machine_learning/random_forest_classifier.py b/machine_learning/random_forest_classifier.py index 07bd33b34..e7acd9134 100644 --- a/machine_learning/random_forest_classifier.py +++ b/machine_learning/random_forest_classifier.py @@ -10,11 +10,11 @@ import matplotlib.pyplot as plt def main(): """ - Random Tree Classifier Example using sklearn function. + Random Forest Classifier Example using sklearn function. Iris type dataset is used to demonstrate algorithm. """ - # Load Iris house price dataset + # Load Iris dataset iris = load_iris() # Split dataset into train and test data