├── DataLoader.ipynb ├── DataLoaderBaseLine.ipynb ├── README.md ├── TrainDataEncodetextsBertParagraphEncoder.ipynb ├── bandits ├── __init__.py ├── algorithms │ ├── neural_bandit_model.py │ └── neural_linear_sampling.py ├── core │ ├── contextual_bandit.py │ ├── contextual_dataset.py │ └── hyperparams.py └── data │ ├── cache_vae_features.py │ ├── data_extractor.py │ ├── data_sampler.py │ ├── mnist.py │ ├── model │ ├── mushroom.data │ ├── selected_datasets │ ├── adult.data │ ├── agaricus-lepiota.data │ ├── covtype.data │ ├── jester_data_40jokes_19181users.npy │ ├── raw_stock_contexts │ └── shuttle.trn │ ├── vae.py │ └── vae_features.npy ├── run_experiment.py ├── run_experiment_multithreaded.py ├── run_experiment_mushroom.py └── vae ├── model ├── results ├── reconstruction_1.png ├── reconstruction_10.png ├── reconstruction_2.png ├── reconstruction_3.png ├── reconstruction_4.png ├── reconstruction_5.png ├── reconstruction_6.png ├── reconstruction_7.png ├── reconstruction_8.png ├── reconstruction_9.png ├── sample_1.png ├── sample_10.png ├── sample_2.png ├── sample_3.png ├── sample_4.png ├── sample_5.png ├── sample_6.png ├── sample_7.png ├── sample_8.png └── sample_9.png └── vae.ipynb /DataLoader.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/DataLoader.ipynb -------------------------------------------------------------------------------- /DataLoaderBaseLine.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/DataLoaderBaseLine.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/README.md -------------------------------------------------------------------------------- /TrainDataEncodetextsBertParagraphEncoder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/TrainDataEncodetextsBertParagraphEncoder.ipynb -------------------------------------------------------------------------------- /bandits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bandits/algorithms/neural_bandit_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/algorithms/neural_bandit_model.py -------------------------------------------------------------------------------- /bandits/algorithms/neural_linear_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/algorithms/neural_linear_sampling.py -------------------------------------------------------------------------------- /bandits/core/contextual_bandit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/core/contextual_bandit.py -------------------------------------------------------------------------------- /bandits/core/contextual_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/core/contextual_dataset.py -------------------------------------------------------------------------------- /bandits/core/hyperparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/core/hyperparams.py -------------------------------------------------------------------------------- /bandits/data/cache_vae_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/cache_vae_features.py -------------------------------------------------------------------------------- /bandits/data/data_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/data_extractor.py -------------------------------------------------------------------------------- /bandits/data/data_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/data_sampler.py -------------------------------------------------------------------------------- /bandits/data/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/mnist.py -------------------------------------------------------------------------------- /bandits/data/model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/model -------------------------------------------------------------------------------- /bandits/data/mushroom.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/mushroom.data -------------------------------------------------------------------------------- /bandits/data/selected_datasets/adult.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/selected_datasets/adult.data -------------------------------------------------------------------------------- /bandits/data/selected_datasets/agaricus-lepiota.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/selected_datasets/agaricus-lepiota.data -------------------------------------------------------------------------------- /bandits/data/selected_datasets/covtype.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/selected_datasets/covtype.data -------------------------------------------------------------------------------- /bandits/data/selected_datasets/jester_data_40jokes_19181users.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/selected_datasets/jester_data_40jokes_19181users.npy -------------------------------------------------------------------------------- /bandits/data/selected_datasets/raw_stock_contexts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/selected_datasets/raw_stock_contexts -------------------------------------------------------------------------------- /bandits/data/selected_datasets/shuttle.trn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/selected_datasets/shuttle.trn -------------------------------------------------------------------------------- /bandits/data/vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/vae.py -------------------------------------------------------------------------------- /bandits/data/vae_features.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/bandits/data/vae_features.npy -------------------------------------------------------------------------------- /run_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/run_experiment.py -------------------------------------------------------------------------------- /run_experiment_multithreaded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/run_experiment_multithreaded.py -------------------------------------------------------------------------------- /run_experiment_mushroom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/run_experiment_mushroom.py -------------------------------------------------------------------------------- /vae/model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/model -------------------------------------------------------------------------------- /vae/results/reconstruction_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/reconstruction_1.png -------------------------------------------------------------------------------- /vae/results/reconstruction_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/reconstruction_10.png -------------------------------------------------------------------------------- /vae/results/reconstruction_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/reconstruction_2.png -------------------------------------------------------------------------------- /vae/results/reconstruction_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/reconstruction_3.png -------------------------------------------------------------------------------- /vae/results/reconstruction_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/reconstruction_4.png -------------------------------------------------------------------------------- /vae/results/reconstruction_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/reconstruction_5.png -------------------------------------------------------------------------------- /vae/results/reconstruction_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/reconstruction_6.png -------------------------------------------------------------------------------- /vae/results/reconstruction_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/reconstruction_7.png -------------------------------------------------------------------------------- /vae/results/reconstruction_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/reconstruction_8.png -------------------------------------------------------------------------------- /vae/results/reconstruction_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/reconstruction_9.png -------------------------------------------------------------------------------- /vae/results/sample_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/sample_1.png -------------------------------------------------------------------------------- /vae/results/sample_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/sample_10.png -------------------------------------------------------------------------------- /vae/results/sample_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/sample_2.png -------------------------------------------------------------------------------- /vae/results/sample_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/sample_3.png -------------------------------------------------------------------------------- /vae/results/sample_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/sample_4.png -------------------------------------------------------------------------------- /vae/results/sample_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/sample_5.png -------------------------------------------------------------------------------- /vae/results/sample_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/sample_6.png -------------------------------------------------------------------------------- /vae/results/sample_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/sample_7.png -------------------------------------------------------------------------------- /vae/results/sample_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/sample_8.png -------------------------------------------------------------------------------- /vae/results/sample_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/results/sample_9.png -------------------------------------------------------------------------------- /vae/vae.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewk1/pytorch-deep-bayesian-bandits/HEAD/vae/vae.ipynb --------------------------------------------------------------------------------