├── .gitignore ├── LICENSE ├── README.md ├── data_utils.py ├── datasets ├── .gitignore └── get_datasets.sh ├── deep-forests-example.ipynb ├── deep_forest.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leopiney/deep-forest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leopiney/deep-forest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leopiney/deep-forest/HEAD/README.md -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leopiney/deep-forest/HEAD/data_utils.py -------------------------------------------------------------------------------- /datasets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leopiney/deep-forest/HEAD/datasets/.gitignore -------------------------------------------------------------------------------- /datasets/get_datasets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leopiney/deep-forest/HEAD/datasets/get_datasets.sh -------------------------------------------------------------------------------- /deep-forests-example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leopiney/deep-forest/HEAD/deep-forests-example.ipynb -------------------------------------------------------------------------------- /deep_forest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leopiney/deep-forest/HEAD/deep_forest.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leopiney/deep-forest/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leopiney/deep-forest/HEAD/utils.py --------------------------------------------------------------------------------