├── LICENSE ├── README.md ├── codebook.py ├── decoder.py ├── discriminator.py ├── encoder.py ├── helper.py ├── lpips.py ├── mingpt.py ├── sample_transformer.py ├── training_transformer.py ├── training_vqgan.py ├── transformer.py ├── utils.py └── vqgan.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /codebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/codebook.py -------------------------------------------------------------------------------- /decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/decoder.py -------------------------------------------------------------------------------- /discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/discriminator.py -------------------------------------------------------------------------------- /encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/encoder.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/helper.py -------------------------------------------------------------------------------- /lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/lpips.py -------------------------------------------------------------------------------- /mingpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/mingpt.py -------------------------------------------------------------------------------- /sample_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/sample_transformer.py -------------------------------------------------------------------------------- /training_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/training_transformer.py -------------------------------------------------------------------------------- /training_vqgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/training_vqgan.py -------------------------------------------------------------------------------- /transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/transformer.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/utils.py -------------------------------------------------------------------------------- /vqgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dome272/VQGAN-pytorch/HEAD/vqgan.py --------------------------------------------------------------------------------