Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.05 KB

File metadata and controls

26 lines (18 loc) · 1.05 KB

Random Forests Implementation

This is an implementation of Random Forests in Python 3 to realize its working as a regressor and as a classifier.

Classifier:

The classification example is based on Sonar dataset. The dataset can be downloaded from this link: UCI Sonar Dataset

The example can be run as: python classify.py

Regressor:

The regression example is based on facial keypoints detection dataset. The dataset can be downloaded from this link: Kaggle Facial Keypoints Detection Dataset

The example code can be run as: python regress.py

References:

For more details look at the following implementations: