├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── data ├── gaussian-bmr │ ├── params.json │ ├── params_and_moms_0.npz │ ├── params_and_moms_1.npz │ ├── params_and_moms_2.npz │ ├── params_and_moms_3.npz │ ├── params_and_moms_4.npz │ ├── params_and_moms_5.npz │ ├── params_and_moms_6.npz │ ├── params_and_moms_7.npz │ ├── params_and_moms_8.npz │ ├── params_and_moms_9.npz │ ├── var_moms_0.npz │ ├── var_moms_1.npz │ ├── var_moms_2.npz │ ├── var_moms_3.npz │ ├── var_moms_4.npz │ ├── var_moms_5.npz │ ├── var_moms_6.npz │ ├── var_moms_7.npz │ ├── var_moms_8.npz │ └── var_moms_9.npz ├── mnist-iwae │ ├── decoder_params.npz │ ├── encoder_h_params.npz │ ├── encoder_mean_params.npz │ ├── encoder_std_params.npz │ └── joint-sample-and-log-norm-bounds.npz ├── omni-iwae │ ├── decoder_params.npz │ ├── encoder_h_params.npz │ ├── encoder_mean_params.npz │ ├── encoder_std_params.npz │ └── joint-sample-and-log-norm-bounds.npz └── radon │ └── radon-group.npz ├── environment.yml └── notebooks ├── bayesian-hierarchical-regression-model.ipynb ├── gaussian-mixture-boltzmann-machine-relaxations.ipynb ├── generate-gaussian-mixture-boltzmann-machine-relaxations.ipynb ├── mnist-iwae-bdmc.ipynb ├── mnist-iwae-experiments.ipynb ├── omniglot-iwae-bdmc.ipynb ├── omniglot-iwae-experiments.ipynb ├── one-dimensional-bimodal-target.ipynb ├── plot-gaussian-mixture-boltzmann-machine-relaxations-2d-projection.ipynb ├── plot-gaussian-mixture-boltzmann-machine-relaxations.ipynb ├── plot-mnist-iwae-results.ipynb └── plot-omniglot-iwae-results.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/README.md -------------------------------------------------------------------------------- /data/gaussian-bmr/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/params.json -------------------------------------------------------------------------------- /data/gaussian-bmr/params_and_moms_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/params_and_moms_0.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/params_and_moms_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/params_and_moms_1.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/params_and_moms_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/params_and_moms_2.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/params_and_moms_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/params_and_moms_3.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/params_and_moms_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/params_and_moms_4.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/params_and_moms_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/params_and_moms_5.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/params_and_moms_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/params_and_moms_6.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/params_and_moms_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/params_and_moms_7.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/params_and_moms_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/params_and_moms_8.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/params_and_moms_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/params_and_moms_9.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/var_moms_0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/var_moms_0.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/var_moms_1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/var_moms_1.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/var_moms_2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/var_moms_2.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/var_moms_3.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/var_moms_3.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/var_moms_4.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/var_moms_4.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/var_moms_5.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/var_moms_5.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/var_moms_6.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/var_moms_6.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/var_moms_7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/var_moms_7.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/var_moms_8.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/var_moms_8.npz -------------------------------------------------------------------------------- /data/gaussian-bmr/var_moms_9.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/gaussian-bmr/var_moms_9.npz -------------------------------------------------------------------------------- /data/mnist-iwae/decoder_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/mnist-iwae/decoder_params.npz -------------------------------------------------------------------------------- /data/mnist-iwae/encoder_h_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/mnist-iwae/encoder_h_params.npz -------------------------------------------------------------------------------- /data/mnist-iwae/encoder_mean_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/mnist-iwae/encoder_mean_params.npz -------------------------------------------------------------------------------- /data/mnist-iwae/encoder_std_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/mnist-iwae/encoder_std_params.npz -------------------------------------------------------------------------------- /data/mnist-iwae/joint-sample-and-log-norm-bounds.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/mnist-iwae/joint-sample-and-log-norm-bounds.npz -------------------------------------------------------------------------------- /data/omni-iwae/decoder_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/omni-iwae/decoder_params.npz -------------------------------------------------------------------------------- /data/omni-iwae/encoder_h_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/omni-iwae/encoder_h_params.npz -------------------------------------------------------------------------------- /data/omni-iwae/encoder_mean_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/omni-iwae/encoder_mean_params.npz -------------------------------------------------------------------------------- /data/omni-iwae/encoder_std_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/omni-iwae/encoder_std_params.npz -------------------------------------------------------------------------------- /data/omni-iwae/joint-sample-and-log-norm-bounds.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/omni-iwae/joint-sample-and-log-norm-bounds.npz -------------------------------------------------------------------------------- /data/radon/radon-group.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/data/radon/radon-group.npz -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/bayesian-hierarchical-regression-model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/bayesian-hierarchical-regression-model.ipynb -------------------------------------------------------------------------------- /notebooks/gaussian-mixture-boltzmann-machine-relaxations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/gaussian-mixture-boltzmann-machine-relaxations.ipynb -------------------------------------------------------------------------------- /notebooks/generate-gaussian-mixture-boltzmann-machine-relaxations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/generate-gaussian-mixture-boltzmann-machine-relaxations.ipynb -------------------------------------------------------------------------------- /notebooks/mnist-iwae-bdmc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/mnist-iwae-bdmc.ipynb -------------------------------------------------------------------------------- /notebooks/mnist-iwae-experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/mnist-iwae-experiments.ipynb -------------------------------------------------------------------------------- /notebooks/omniglot-iwae-bdmc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/omniglot-iwae-bdmc.ipynb -------------------------------------------------------------------------------- /notebooks/omniglot-iwae-experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/omniglot-iwae-experiments.ipynb -------------------------------------------------------------------------------- /notebooks/one-dimensional-bimodal-target.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/one-dimensional-bimodal-target.ipynb -------------------------------------------------------------------------------- /notebooks/plot-gaussian-mixture-boltzmann-machine-relaxations-2d-projection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/plot-gaussian-mixture-boltzmann-machine-relaxations-2d-projection.ipynb -------------------------------------------------------------------------------- /notebooks/plot-gaussian-mixture-boltzmann-machine-relaxations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/plot-gaussian-mixture-boltzmann-machine-relaxations.ipynb -------------------------------------------------------------------------------- /notebooks/plot-mnist-iwae-results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/plot-mnist-iwae-results.ipynb -------------------------------------------------------------------------------- /notebooks/plot-omniglot-iwae-results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matt-graham/continuously-tempered-hmc/HEAD/notebooks/plot-omniglot-iwae-results.ipynb --------------------------------------------------------------------------------