├── .gitignore ├── README.md ├── example_classification.py ├── example_regression.py ├── example_sklearn_classification.py ├── example_sklearn_regression.py ├── img ├── classification_forest_AxisAligned_hard.png ├── classification_forest_AxisAligned_soft.png ├── classification_forest_Conic_hard.png ├── classification_forest_Conic_soft.png ├── classification_forest_Linear_hard.png ├── classification_forest_Linear_soft.png ├── classification_forest_Parabola_hard.png ├── classification_forest_Parabola_soft.png ├── classification_forest_sklearn_AxisAligned_hard.png ├── classification_forest_sklearn_AxisAligned_soft.png ├── classification_forest_sklearn_Conic_hard.png ├── classification_forest_sklearn_Conic_soft.png ├── classification_forest_sklearn_Linear_hard.png ├── classification_forest_sklearn_Linear_soft.png ├── classification_forest_sklearn_Parabola_hard.png ├── classification_forest_sklearn_Parabola_soft.png ├── classification_tree_AxisAligned.png ├── classification_tree_Conic.png ├── classification_tree_Linear.png ├── classification_tree_Parabola.png ├── regression_forest_AxisAligned.png ├── regression_forest_Conic.png ├── regression_forest_Linear.png ├── regression_forest_Parabola.png ├── regression_forest_sklearn_AxisAligned.png ├── regression_forest_sklearn_Conic.png ├── regression_forest_sklearn_Linear.png ├── regression_forest_sklearn_Parabola.png ├── regression_tree_AxisAligned.png ├── regression_tree_Conic.png ├── regression_tree_Linear.png └── regression_tree_Parabola.png └── randomforest ├── __init__.py ├── classification_forest.py ├── classification_tree.py ├── forest.py ├── regression_forest.py ├── regression_tree.py ├── tree.py └── weakLearner.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/README.md -------------------------------------------------------------------------------- /example_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/example_classification.py -------------------------------------------------------------------------------- /example_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/example_regression.py -------------------------------------------------------------------------------- /example_sklearn_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/example_sklearn_classification.py -------------------------------------------------------------------------------- /example_sklearn_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/example_sklearn_regression.py -------------------------------------------------------------------------------- /img/classification_forest_AxisAligned_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_AxisAligned_hard.png -------------------------------------------------------------------------------- /img/classification_forest_AxisAligned_soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_AxisAligned_soft.png -------------------------------------------------------------------------------- /img/classification_forest_Conic_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_Conic_hard.png -------------------------------------------------------------------------------- /img/classification_forest_Conic_soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_Conic_soft.png -------------------------------------------------------------------------------- /img/classification_forest_Linear_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_Linear_hard.png -------------------------------------------------------------------------------- /img/classification_forest_Linear_soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_Linear_soft.png -------------------------------------------------------------------------------- /img/classification_forest_Parabola_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_Parabola_hard.png -------------------------------------------------------------------------------- /img/classification_forest_Parabola_soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_Parabola_soft.png -------------------------------------------------------------------------------- /img/classification_forest_sklearn_AxisAligned_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_sklearn_AxisAligned_hard.png -------------------------------------------------------------------------------- /img/classification_forest_sklearn_AxisAligned_soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_sklearn_AxisAligned_soft.png -------------------------------------------------------------------------------- /img/classification_forest_sklearn_Conic_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_sklearn_Conic_hard.png -------------------------------------------------------------------------------- /img/classification_forest_sklearn_Conic_soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_sklearn_Conic_soft.png -------------------------------------------------------------------------------- /img/classification_forest_sklearn_Linear_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_sklearn_Linear_hard.png -------------------------------------------------------------------------------- /img/classification_forest_sklearn_Linear_soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_sklearn_Linear_soft.png -------------------------------------------------------------------------------- /img/classification_forest_sklearn_Parabola_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_sklearn_Parabola_hard.png -------------------------------------------------------------------------------- /img/classification_forest_sklearn_Parabola_soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_forest_sklearn_Parabola_soft.png -------------------------------------------------------------------------------- /img/classification_tree_AxisAligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_tree_AxisAligned.png -------------------------------------------------------------------------------- /img/classification_tree_Conic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_tree_Conic.png -------------------------------------------------------------------------------- /img/classification_tree_Linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_tree_Linear.png -------------------------------------------------------------------------------- /img/classification_tree_Parabola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/classification_tree_Parabola.png -------------------------------------------------------------------------------- /img/regression_forest_AxisAligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_forest_AxisAligned.png -------------------------------------------------------------------------------- /img/regression_forest_Conic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_forest_Conic.png -------------------------------------------------------------------------------- /img/regression_forest_Linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_forest_Linear.png -------------------------------------------------------------------------------- /img/regression_forest_Parabola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_forest_Parabola.png -------------------------------------------------------------------------------- /img/regression_forest_sklearn_AxisAligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_forest_sklearn_AxisAligned.png -------------------------------------------------------------------------------- /img/regression_forest_sklearn_Conic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_forest_sklearn_Conic.png -------------------------------------------------------------------------------- /img/regression_forest_sklearn_Linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_forest_sklearn_Linear.png -------------------------------------------------------------------------------- /img/regression_forest_sklearn_Parabola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_forest_sklearn_Parabola.png -------------------------------------------------------------------------------- /img/regression_tree_AxisAligned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_tree_AxisAligned.png -------------------------------------------------------------------------------- /img/regression_tree_Conic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_tree_Conic.png -------------------------------------------------------------------------------- /img/regression_tree_Linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_tree_Linear.png -------------------------------------------------------------------------------- /img/regression_tree_Parabola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/img/regression_tree_Parabola.png -------------------------------------------------------------------------------- /randomforest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/randomforest/__init__.py -------------------------------------------------------------------------------- /randomforest/classification_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/randomforest/classification_forest.py -------------------------------------------------------------------------------- /randomforest/classification_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/randomforest/classification_tree.py -------------------------------------------------------------------------------- /randomforest/forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/randomforest/forest.py -------------------------------------------------------------------------------- /randomforest/regression_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/randomforest/regression_forest.py -------------------------------------------------------------------------------- /randomforest/regression_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/randomforest/regression_tree.py -------------------------------------------------------------------------------- /randomforest/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/randomforest/tree.py -------------------------------------------------------------------------------- /randomforest/weakLearner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/randomforest-python/HEAD/randomforest/weakLearner.py --------------------------------------------------------------------------------