gitextract_vk1fb46d/ ├── .gitignore ├── .idea/ │ ├── .gitignore │ ├── PyTorch-VAE.iml │ ├── inspectionProfiles/ │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── LICENSE.md ├── README.md ├── configs/ │ ├── bbvae.yaml │ ├── betatc_vae.yaml │ ├── bhvae.yaml │ ├── cat_vae.yaml │ ├── cvae.yaml │ ├── dfc_vae.yaml │ ├── dip_vae.yaml │ ├── factorvae.yaml │ ├── gammavae.yaml │ ├── hvae.yaml │ ├── infovae.yaml │ ├── iwae.yaml │ ├── joint_vae.yaml │ ├── logcosh_vae.yaml │ ├── lvae.yaml │ ├── miwae.yaml │ ├── mssim_vae.yaml │ ├── swae.yaml │ ├── vae.yaml │ ├── vampvae.yaml │ ├── vq_vae.yaml │ ├── wae_mmd_imq.yaml │ └── wae_mmd_rbf.yaml ├── dataset.py ├── experiment.py ├── models/ │ ├── __init__.py │ ├── base.py │ ├── beta_vae.py │ ├── betatc_vae.py │ ├── cat_vae.py │ ├── cvae.py │ ├── dfcvae.py │ ├── dip_vae.py │ ├── fvae.py │ ├── gamma_vae.py │ ├── hvae.py │ ├── info_vae.py │ ├── iwae.py │ ├── joint_vae.py │ ├── logcosh_vae.py │ ├── lvae.py │ ├── miwae.py │ ├── mssim_vae.py │ ├── swae.py │ ├── twostage_vae.py │ ├── types_.py │ ├── vampvae.py │ ├── vanilla_vae.py │ ├── vq_vae.py │ └── wae_mmd.py ├── requirements.txt ├── run.py ├── tests/ │ ├── bvae.py │ ├── test_betatcvae.py │ ├── test_cat_vae.py │ ├── test_dfc.py │ ├── test_dipvae.py │ ├── test_fvae.py │ ├── test_gvae.py │ ├── test_hvae.py │ ├── test_iwae.py │ ├── test_joint_Vae.py │ ├── test_logcosh.py │ ├── test_lvae.py │ ├── test_miwae.py │ ├── test_mssimvae.py │ ├── test_swae.py │ ├── test_vae.py │ ├── test_vq_vae.py │ ├── test_wae.py │ ├── text_cvae.py │ └── text_vamp.py └── utils.py