├── LICENSE ├── README.md └── src ├── automl.py ├── boosting.py ├── metadata ├── model.py └── preprocess.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaLearners/NIPS-2018-AutoML-Challenge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaLearners/NIPS-2018-AutoML-Challenge/HEAD/README.md -------------------------------------------------------------------------------- /src/automl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaLearners/NIPS-2018-AutoML-Challenge/HEAD/src/automl.py -------------------------------------------------------------------------------- /src/boosting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaLearners/NIPS-2018-AutoML-Challenge/HEAD/src/boosting.py -------------------------------------------------------------------------------- /src/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaLearners/NIPS-2018-AutoML-Challenge/HEAD/src/metadata -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaLearners/NIPS-2018-AutoML-Challenge/HEAD/src/model.py -------------------------------------------------------------------------------- /src/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaLearners/NIPS-2018-AutoML-Challenge/HEAD/src/preprocess.py --------------------------------------------------------------------------------