├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── experiments ├── ackley_runner.py ├── alpine1_runner.py ├── carcab_runner.py ├── evalset │ ├── __init__.py │ ├── data_files │ │ ├── __init__.py │ │ ├── candy.csv │ │ ├── concrete.csv │ │ ├── sushi3.idata │ │ ├── sushi3b.5000.10.score │ │ └── wine_data.csv │ └── test_funcs.py ├── hartmann_runner.py └── sushi_runner.py └── src ├── acquisition_functions ├── eubo.py ├── mpes.py └── thompson_sampling.py ├── experiment_manager.py ├── models ├── likelihoods │ └── preferential_softmax_likelihood.py └── variational_preferential_gp.py ├── pbo_trial.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/README.md -------------------------------------------------------------------------------- /experiments/ackley_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/ackley_runner.py -------------------------------------------------------------------------------- /experiments/alpine1_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/alpine1_runner.py -------------------------------------------------------------------------------- /experiments/carcab_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/carcab_runner.py -------------------------------------------------------------------------------- /experiments/evalset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/evalset/__init__.py -------------------------------------------------------------------------------- /experiments/evalset/data_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/evalset/data_files/candy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/evalset/data_files/candy.csv -------------------------------------------------------------------------------- /experiments/evalset/data_files/concrete.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/evalset/data_files/concrete.csv -------------------------------------------------------------------------------- /experiments/evalset/data_files/sushi3.idata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/evalset/data_files/sushi3.idata -------------------------------------------------------------------------------- /experiments/evalset/data_files/sushi3b.5000.10.score: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/evalset/data_files/sushi3b.5000.10.score -------------------------------------------------------------------------------- /experiments/evalset/data_files/wine_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/evalset/data_files/wine_data.csv -------------------------------------------------------------------------------- /experiments/evalset/test_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/evalset/test_funcs.py -------------------------------------------------------------------------------- /experiments/hartmann_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/hartmann_runner.py -------------------------------------------------------------------------------- /experiments/sushi_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/experiments/sushi_runner.py -------------------------------------------------------------------------------- /src/acquisition_functions/eubo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/src/acquisition_functions/eubo.py -------------------------------------------------------------------------------- /src/acquisition_functions/mpes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/src/acquisition_functions/mpes.py -------------------------------------------------------------------------------- /src/acquisition_functions/thompson_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/src/acquisition_functions/thompson_sampling.py -------------------------------------------------------------------------------- /src/experiment_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/src/experiment_manager.py -------------------------------------------------------------------------------- /src/models/likelihoods/preferential_softmax_likelihood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/src/models/likelihoods/preferential_softmax_likelihood.py -------------------------------------------------------------------------------- /src/models/variational_preferential_gp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/src/models/variational_preferential_gp.py -------------------------------------------------------------------------------- /src/pbo_trial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/src/pbo_trial.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookresearch/qEUBO/HEAD/src/utils.py --------------------------------------------------------------------------------