An open API service indexing awesome lists of open source software.

https://github.com/kimrass/dcgan

PyTorch implementation of 'DCGAN' (Radford et al., 2016) and training it on CelebA
https://github.com/kimrass/dcgan

celeba dcgan gans pytorch

Last synced: 3 months ago
JSON representation

PyTorch implementation of 'DCGAN' (Radford et al., 2016) and training it on CelebA

Awesome Lists containing this project

README

          

# 1. Pre-trained Model on CelebA 64 × 64
- [dcgan_celeba.pth](https://drive.google.com/file/d/1dgC2lhIN-Qf_JvN2rz77brHHru13DFNy/view?usp=sharing)

# 2. Sampling
## 1) `"grid"` mode
```bash
# e.g.,
python3 sample.py\
--mode="grid"\
--ckpt_path="/.../dcgan/dcgan_celeba.pth"\
--batch_size=100\
--n_iters=10\
--n_cpus=0 # Optional
```
-
## 2) `"interpolation"` mode
```bash
# e.g.,
python3 sample.py\
--mode="interpolation"\
--ckpt_path="/.../dcgan/dcgan_celeba.pth"\
--n_cells=10\
--n_iters=10\
--n_cpus=0 # Optional
```
-