├── .gitignore ├── LICENSE ├── README.md ├── images ├── vq-vae.png └── vq-vae.svg ├── requirements.txt └── vq-vae.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalandoresearch/pytorch-vq-vae/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalandoresearch/pytorch-vq-vae/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalandoresearch/pytorch-vq-vae/HEAD/README.md -------------------------------------------------------------------------------- /images/vq-vae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalandoresearch/pytorch-vq-vae/HEAD/images/vq-vae.png -------------------------------------------------------------------------------- /images/vq-vae.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalandoresearch/pytorch-vq-vae/HEAD/images/vq-vae.svg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalandoresearch/pytorch-vq-vae/HEAD/requirements.txt -------------------------------------------------------------------------------- /vq-vae.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zalandoresearch/pytorch-vq-vae/HEAD/vq-vae.ipynb --------------------------------------------------------------------------------