├── .gitignore ├── LICENSE ├── README.md ├── data ├── uci_adult │ └── get_data.sh ├── uci_letter │ └── get_data.sh └── uci_yeast │ └── get_data.sh ├── dataset.py ├── ndf.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingxil/Neural-Decision-Forests/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingxil/Neural-Decision-Forests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingxil/Neural-Decision-Forests/HEAD/README.md -------------------------------------------------------------------------------- /data/uci_adult/get_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingxil/Neural-Decision-Forests/HEAD/data/uci_adult/get_data.sh -------------------------------------------------------------------------------- /data/uci_letter/get_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingxil/Neural-Decision-Forests/HEAD/data/uci_letter/get_data.sh -------------------------------------------------------------------------------- /data/uci_yeast/get_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingxil/Neural-Decision-Forests/HEAD/data/uci_yeast/get_data.sh -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingxil/Neural-Decision-Forests/HEAD/dataset.py -------------------------------------------------------------------------------- /ndf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingxil/Neural-Decision-Forests/HEAD/ndf.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingxil/Neural-Decision-Forests/HEAD/train.py --------------------------------------------------------------------------------