├── .gitignore ├── README.md ├── data ├── __init__.py ├── celeba.py ├── cifar.py ├── kdd.py ├── mnist.py ├── mnist_anomaly.py └── toy.py ├── networks ├── __init__.py ├── celeba.py ├── cifar.py ├── kdd.py ├── mnist.py ├── regularizers.py └── toy.py └── scripts ├── evals.py ├── inception_score.py ├── sampler.py ├── test ├── eval_metrics_cifar.py └── latent_space_mcmc.py ├── train ├── anomaly_kdd.py ├── anomaly_mnist.py ├── classifier_mnist.py ├── ebm_celeba.py ├── ebm_cifar.py ├── ebm_mnist.py ├── ebm_toy.py ├── functions.py ├── wgan-gp_cifar.py └── wgan-gp_mnist.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/celeba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/data/celeba.py -------------------------------------------------------------------------------- /data/cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/data/cifar.py -------------------------------------------------------------------------------- /data/kdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/data/kdd.py -------------------------------------------------------------------------------- /data/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/data/mnist.py -------------------------------------------------------------------------------- /data/mnist_anomaly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/data/mnist_anomaly.py -------------------------------------------------------------------------------- /data/toy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/data/toy.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /networks/celeba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/networks/celeba.py -------------------------------------------------------------------------------- /networks/cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/networks/cifar.py -------------------------------------------------------------------------------- /networks/kdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/networks/kdd.py -------------------------------------------------------------------------------- /networks/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/networks/mnist.py -------------------------------------------------------------------------------- /networks/regularizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/networks/regularizers.py -------------------------------------------------------------------------------- /networks/toy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/networks/toy.py -------------------------------------------------------------------------------- /scripts/evals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/evals.py -------------------------------------------------------------------------------- /scripts/inception_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/inception_score.py -------------------------------------------------------------------------------- /scripts/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/sampler.py -------------------------------------------------------------------------------- /scripts/test/eval_metrics_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/test/eval_metrics_cifar.py -------------------------------------------------------------------------------- /scripts/test/latent_space_mcmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/test/latent_space_mcmc.py -------------------------------------------------------------------------------- /scripts/train/anomaly_kdd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/train/anomaly_kdd.py -------------------------------------------------------------------------------- /scripts/train/anomaly_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/train/anomaly_mnist.py -------------------------------------------------------------------------------- /scripts/train/classifier_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/train/classifier_mnist.py -------------------------------------------------------------------------------- /scripts/train/ebm_celeba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/train/ebm_celeba.py -------------------------------------------------------------------------------- /scripts/train/ebm_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/train/ebm_cifar.py -------------------------------------------------------------------------------- /scripts/train/ebm_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/train/ebm_mnist.py -------------------------------------------------------------------------------- /scripts/train/ebm_toy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/train/ebm_toy.py -------------------------------------------------------------------------------- /scripts/train/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/train/functions.py -------------------------------------------------------------------------------- /scripts/train/wgan-gp_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/train/wgan-gp_cifar.py -------------------------------------------------------------------------------- /scripts/train/wgan-gp_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/train/wgan-gp_mnist.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ritheshkumar95/energy_based_generative_models/HEAD/scripts/utils.py --------------------------------------------------------------------------------