├── COPYING ├── environment.yaml ├── readme.md ├── rgpe ├── __init__.py ├── exploring_openml.py ├── methods │ ├── GCPplusPrior.py │ ├── __init__.py │ ├── ablr.py │ ├── kl_weighting.py │ ├── noisy_ei.py │ ├── rgpe.py │ ├── rmogp.py │ ├── taf.py │ ├── tstr.py │ └── warmstarting_ac.py ├── test_functions.py └── utils.py └── scripts ├── generate_commands.py ├── install.sh └── run_benchmark.py /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/COPYING -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/environment.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/readme.md -------------------------------------------------------------------------------- /rgpe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rgpe/exploring_openml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/exploring_openml.py -------------------------------------------------------------------------------- /rgpe/methods/GCPplusPrior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/methods/GCPplusPrior.py -------------------------------------------------------------------------------- /rgpe/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rgpe/methods/ablr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/methods/ablr.py -------------------------------------------------------------------------------- /rgpe/methods/kl_weighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/methods/kl_weighting.py -------------------------------------------------------------------------------- /rgpe/methods/noisy_ei.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/methods/noisy_ei.py -------------------------------------------------------------------------------- /rgpe/methods/rgpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/methods/rgpe.py -------------------------------------------------------------------------------- /rgpe/methods/rmogp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/methods/rmogp.py -------------------------------------------------------------------------------- /rgpe/methods/taf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/methods/taf.py -------------------------------------------------------------------------------- /rgpe/methods/tstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/methods/tstr.py -------------------------------------------------------------------------------- /rgpe/methods/warmstarting_ac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/methods/warmstarting_ac.py -------------------------------------------------------------------------------- /rgpe/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/test_functions.py -------------------------------------------------------------------------------- /rgpe/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/rgpe/utils.py -------------------------------------------------------------------------------- /scripts/generate_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/scripts/generate_commands.py -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/run_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/automl/transfer-hpo-framework/HEAD/scripts/run_benchmark.py --------------------------------------------------------------------------------