├── .gitignore ├── LICENSE ├── README.md ├── agent.py ├── automl.py ├── automl_lib ├── __init__.py ├── data_converter.py ├── data_io.py ├── data_manager.py └── models.py ├── constants.py ├── data_management.py ├── deep_sandpit.py ├── demo.py ├── dummy_decision_maker.py ├── experiment.py ├── experiments.py ├── freezethaw.py ├── global_data.py ├── learners.py ├── libscores.py ├── managers.py ├── metadata ├── metalearners.py ├── papers └── workshop │ ├── format │ ├── fancyhdr.sty │ ├── natbib.sty │ ├── nips15submit_e.sty │ └── nips2015.tex │ ├── include │ ├── commenting.tex │ └── picins.sty │ ├── library.bib │ ├── preamble.sty │ ├── preamble.tex │ └── rational-computation-ensemble.tex ├── postprocessing.py ├── run.py ├── sandpit.py ├── sandpit_two.py ├── score.py ├── stackcombiner.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/agent.py -------------------------------------------------------------------------------- /automl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/automl.py -------------------------------------------------------------------------------- /automl_lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /automl_lib/data_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/automl_lib/data_converter.py -------------------------------------------------------------------------------- /automl_lib/data_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/automl_lib/data_io.py -------------------------------------------------------------------------------- /automl_lib/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/automl_lib/data_manager.py -------------------------------------------------------------------------------- /automl_lib/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/automl_lib/models.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/constants.py -------------------------------------------------------------------------------- /data_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/data_management.py -------------------------------------------------------------------------------- /deep_sandpit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/deep_sandpit.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/demo.py -------------------------------------------------------------------------------- /dummy_decision_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/dummy_decision_maker.py -------------------------------------------------------------------------------- /experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/experiment.py -------------------------------------------------------------------------------- /experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/experiments.py -------------------------------------------------------------------------------- /freezethaw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/freezethaw.py -------------------------------------------------------------------------------- /global_data.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/learners.py -------------------------------------------------------------------------------- /libscores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/libscores.py -------------------------------------------------------------------------------- /managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/managers.py -------------------------------------------------------------------------------- /metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/metadata -------------------------------------------------------------------------------- /metalearners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/metalearners.py -------------------------------------------------------------------------------- /papers/workshop/format/fancyhdr.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/papers/workshop/format/fancyhdr.sty -------------------------------------------------------------------------------- /papers/workshop/format/natbib.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/papers/workshop/format/natbib.sty -------------------------------------------------------------------------------- /papers/workshop/format/nips15submit_e.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/papers/workshop/format/nips15submit_e.sty -------------------------------------------------------------------------------- /papers/workshop/format/nips2015.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/papers/workshop/format/nips2015.tex -------------------------------------------------------------------------------- /papers/workshop/include/commenting.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/papers/workshop/include/commenting.tex -------------------------------------------------------------------------------- /papers/workshop/include/picins.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/papers/workshop/include/picins.sty -------------------------------------------------------------------------------- /papers/workshop/library.bib: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /papers/workshop/preamble.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/papers/workshop/preamble.sty -------------------------------------------------------------------------------- /papers/workshop/preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/papers/workshop/preamble.tex -------------------------------------------------------------------------------- /papers/workshop/rational-computation-ensemble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/papers/workshop/rational-computation-ensemble.tex -------------------------------------------------------------------------------- /postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/postprocessing.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/run.py -------------------------------------------------------------------------------- /sandpit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/sandpit.py -------------------------------------------------------------------------------- /sandpit_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/sandpit_two.py -------------------------------------------------------------------------------- /score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/score.py -------------------------------------------------------------------------------- /stackcombiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/stackcombiner.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesrobertlloyd/automl-phase-2/HEAD/util.py --------------------------------------------------------------------------------