├── .gitattribute ├── .gitignore ├── .landscape.yaml ├── .travis.yml ├── Makefile ├── README.rst ├── continuous_integration ├── install.sh └── test_script.sh ├── doc ├── Makefile ├── _templates │ ├── class.rst │ ├── class_with_call.rst │ ├── function.rst │ └── layout.html ├── conf.py ├── images │ └── no_image.png ├── index.rst ├── make.bat ├── references.rst └── sphinxext │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.txt │ ├── gen_rst.py │ ├── install_sphinx_bootstrap_theme.sh │ └── numpy_ext │ ├── __init__.py │ ├── docscrape.py │ ├── docscrape_sphinx.py │ └── numpydoc.py ├── examples ├── README.txt ├── plot_randomized_output_decision_tree.py └── plot_variance_preservation.py ├── random_output_trees ├── __init__.py ├── _sklearn_tree.c ├── _sklearn_tree.pxd ├── _sklearn_tree.pyx ├── _sklearn_tree_utils.c ├── _sklearn_tree_utils.pxd ├── _sklearn_tree_utils.pyx ├── _tree.c ├── _tree.pyx ├── _utils.py ├── datasets.py ├── ensemble │ ├── __init__.py │ ├── _sklearn_forest.py │ ├── forest.py │ ├── lazy_bagging.py │ └── tests │ │ ├── test_forest.py │ │ └── test_lazy_bagging.py ├── random_projection.py ├── setup.py ├── tests │ ├── test_datasets.py │ ├── test_random_projection.py │ ├── test_sklearn_ensemble.py │ ├── test_sklearn_tree.py │ ├── test_transformer.py │ ├── test_tree.py │ └── test_validations.py ├── transformer.py └── tree.py ├── setup.cfg └── setup.py /.gitattribute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/.gitattribute -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/.gitignore -------------------------------------------------------------------------------- /.landscape.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/.landscape.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/README.rst -------------------------------------------------------------------------------- /continuous_integration/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/continuous_integration/install.sh -------------------------------------------------------------------------------- /continuous_integration/test_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/continuous_integration/test_script.sh -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_templates/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/_templates/class.rst -------------------------------------------------------------------------------- /doc/_templates/class_with_call.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/_templates/class_with_call.rst -------------------------------------------------------------------------------- /doc/_templates/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/_templates/function.rst -------------------------------------------------------------------------------- /doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/_templates/layout.html -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/images/no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/images/no_image.png -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/references.rst -------------------------------------------------------------------------------- /doc/sphinxext/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/sphinxext/LICENSE.txt -------------------------------------------------------------------------------- /doc/sphinxext/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/sphinxext/MANIFEST.in -------------------------------------------------------------------------------- /doc/sphinxext/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/sphinxext/README.txt -------------------------------------------------------------------------------- /doc/sphinxext/gen_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/sphinxext/gen_rst.py -------------------------------------------------------------------------------- /doc/sphinxext/install_sphinx_bootstrap_theme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/sphinxext/install_sphinx_bootstrap_theme.sh -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/docscrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/sphinxext/numpy_ext/docscrape.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/docscrape_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/sphinxext/numpy_ext/docscrape_sphinx.py -------------------------------------------------------------------------------- /doc/sphinxext/numpy_ext/numpydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/doc/sphinxext/numpy_ext/numpydoc.py -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/plot_randomized_output_decision_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/examples/plot_randomized_output_decision_tree.py -------------------------------------------------------------------------------- /examples/plot_variance_preservation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/examples/plot_variance_preservation.py -------------------------------------------------------------------------------- /random_output_trees/__init__.py: -------------------------------------------------------------------------------- 1 | # Author : Arnaud Joly 2 | # 3 | # License: BSD 3 clause 4 | 5 | __version__ = "dev" 6 | 7 | -------------------------------------------------------------------------------- /random_output_trees/_sklearn_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/_sklearn_tree.c -------------------------------------------------------------------------------- /random_output_trees/_sklearn_tree.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/_sklearn_tree.pxd -------------------------------------------------------------------------------- /random_output_trees/_sklearn_tree.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/_sklearn_tree.pyx -------------------------------------------------------------------------------- /random_output_trees/_sklearn_tree_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/_sklearn_tree_utils.c -------------------------------------------------------------------------------- /random_output_trees/_sklearn_tree_utils.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/_sklearn_tree_utils.pxd -------------------------------------------------------------------------------- /random_output_trees/_sklearn_tree_utils.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/_sklearn_tree_utils.pyx -------------------------------------------------------------------------------- /random_output_trees/_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/_tree.c -------------------------------------------------------------------------------- /random_output_trees/_tree.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/_tree.pyx -------------------------------------------------------------------------------- /random_output_trees/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/_utils.py -------------------------------------------------------------------------------- /random_output_trees/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/datasets.py -------------------------------------------------------------------------------- /random_output_trees/ensemble/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/ensemble/__init__.py -------------------------------------------------------------------------------- /random_output_trees/ensemble/_sklearn_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/ensemble/_sklearn_forest.py -------------------------------------------------------------------------------- /random_output_trees/ensemble/forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/ensemble/forest.py -------------------------------------------------------------------------------- /random_output_trees/ensemble/lazy_bagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/ensemble/lazy_bagging.py -------------------------------------------------------------------------------- /random_output_trees/ensemble/tests/test_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/ensemble/tests/test_forest.py -------------------------------------------------------------------------------- /random_output_trees/ensemble/tests/test_lazy_bagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/ensemble/tests/test_lazy_bagging.py -------------------------------------------------------------------------------- /random_output_trees/random_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/random_projection.py -------------------------------------------------------------------------------- /random_output_trees/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/setup.py -------------------------------------------------------------------------------- /random_output_trees/tests/test_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/tests/test_datasets.py -------------------------------------------------------------------------------- /random_output_trees/tests/test_random_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/tests/test_random_projection.py -------------------------------------------------------------------------------- /random_output_trees/tests/test_sklearn_ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/tests/test_sklearn_ensemble.py -------------------------------------------------------------------------------- /random_output_trees/tests/test_sklearn_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/tests/test_sklearn_tree.py -------------------------------------------------------------------------------- /random_output_trees/tests/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/tests/test_transformer.py -------------------------------------------------------------------------------- /random_output_trees/tests/test_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/tests/test_tree.py -------------------------------------------------------------------------------- /random_output_trees/tests/test_validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/tests/test_validations.py -------------------------------------------------------------------------------- /random_output_trees/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/transformer.py -------------------------------------------------------------------------------- /random_output_trees/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/random_output_trees/tree.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arjoly/random-output-trees/HEAD/setup.py --------------------------------------------------------------------------------