├── .gitignore ├── LICENSE ├── README.md ├── fid_v2_tf_cpu.py ├── pygrid.py ├── train_celeba_128.py └── train_svhn.py /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | output -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpucla/latent-space-EBM-prior/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpucla/latent-space-EBM-prior/HEAD/README.md -------------------------------------------------------------------------------- /fid_v2_tf_cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpucla/latent-space-EBM-prior/HEAD/fid_v2_tf_cpu.py -------------------------------------------------------------------------------- /pygrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpucla/latent-space-EBM-prior/HEAD/pygrid.py -------------------------------------------------------------------------------- /train_celeba_128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpucla/latent-space-EBM-prior/HEAD/train_celeba_128.py -------------------------------------------------------------------------------- /train_svhn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bpucla/latent-space-EBM-prior/HEAD/train_svhn.py --------------------------------------------------------------------------------