• Stars
    star
    1,079
  • Rank 41,240 (Top 0.9 %)
  • Language
    Python
  • License
    Other
  • Created over 5 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Implementation A Style-Based Generator Architecture for Generative Adversarial Networks in PyTorch

Style-Based GAN in PyTorch

Update (2019/09/01)

I found bugs in the implementation thanks to @adambielski and @TropComplique! (#33, #34) I have fixed this and updated checkpoints

Update (2019/07/04)
  • Now trainer uses pre-resized lmdb dataset for more stable data loading and training.
  • Model architecture is now more closely matches with official implementation.

Implementation of A Style-Based Generator Architecture for Generative Adversarial Networks (https://arxiv.org/abs/1812.04948) in PyTorch

Usage:

You should prepare lmdb dataset

python prepare_data.py --out LMDB_PATH --n_worker N_WORKER DATASET_PATH

This will convert images to jpeg and pre-resizes it. (For example, 8/16/32/64/128/256/512/1024) Then you can train StyleGAN.

for celebA

python train.py --mixing LMDB_PATH

for FFHQ

python train.py --mixing --loss r1 --sched LMDB_PATH

Resolution Model & Optimizer
256px Link
512px Link
1024px Link

Model & Optimizer checkpoints saved at the end of phases of each resolution. (that is, 512px checkpoint saved at the end of 512px training.)

Sample

Sample of the model trained on FFHQ Style mixing sample of the model trained on FFHQ

512px sample from the generator trained on FFHQ.

Old Checkpoints

Resolution Model & Optimizer Running average of generator
128px Link 100k iter Link
256px Link 140k iter Link
512px Link 180k iter Link

Old version of checkpoints. As gradient penalty and discriminator activations are different, it is better to use new checkpoints to do some training. But you can use these checkpoints to make samples as generator architecture is not changed.

Running average of generator is saved at the specified iterations. So these two are saved at different iterations. (Yes, this is my mistake.)

More Repositories

1

stylegan2-pytorch

Implementation of Analyzing and Improving the Image Quality of StyleGAN (StyleGAN 2) in PyTorch
Python
2,651
star
2

vq-vae-2-pytorch

Implementation of Generating Diverse High-Fidelity Images with VQ-VAE-2 in PyTorch
Python
1,503
star
3

alias-free-gan-pytorch

Unofficial implementation of Alias-Free Generative Adversarial Networks. (https://arxiv.org/abs/2106.12423) in PyTorch
Python
507
star
4

glow-pytorch

PyTorch implementation of Glow
Python
492
star
5

denoising-diffusion-pytorch

Implementation of Denoising Diffusion Probabilistic Models in PyTorch
Python
334
star
6

swapping-autoencoder-pytorch

Unofficial implementation of Swapping Autoencoder for Deep Image Manipulation (https://arxiv.org/abs/2007.00653) in PyTorch
Python
257
star
7

ml-papers

My collection of machine learning papers
252
star
8

mac-network-pytorch

Memory, Attention and Composition (MAC) Network for CLEVR implemented in PyTorch
Python
85
star
9

vision-transformers-pytorch

Implementation of various Vision Transformers I found interesting
Python
82
star
10

adaptive-softmax-pytorch

Adaptive Softmax implementation for PyTorch
Python
80
star
11

sagan-pytorch

Self-Attention Generative Adversarial Networks Implementation in PyTorch
Python
73
star
12

igebm-pytorch

Implicit Generation and Generalization in Energy Based Models in PyTorch
Python
64
star
13

ocr-pytorch

Object-Contextual Representations for Semantic Segmentation in PyTorch
Python
63
star
14

relation-networks-pytorch

Relation Networks for CLEVR implemented in PyTorch
Python
61
star
15

progressive-gan-pytorch

Implemetatin of Progressive Growing of GANs in PyTorch
Python
60
star
16

imputer-pytorch

Implementation of Imputer: Sequence Modelling via Imputation and Dynamic Programming in PyTorch
Python
58
star
17

depthwise-conv-pytorch

Faster depthwise convolutions for PyTorch
Cuda
56
star
18

fcos-pytorch

Re-implementation of FCOS for personal study
Python
51
star
19

knotter

Implementation of Mapper algorithm for Topological Data Analysis
JavaScript
46
star
20

semantic-pyramid-pytorch

Implementation of Semantic Pyramid for Image Generation (https://arxiv.org/abs/2003.06221) in PyTorch
Python
40
star
21

id-gan-pytorch

Information Distillation Generative Adversrial Network in PyTorch
Python
27
star
22

nerf-pytorch

Python
22
star
23

tensorfn

Weakly opinionated library for implementing ML models. Less boilerplate, More rigor
Python
21
star
24

taming-transformers-pytorch

Implementation of Taming Transformers for High-Resolution Image Synthesis (https://arxiv.org/abs/2012.09841) in PyTorch
17
star
25

film-pytorch

Just another implementation of FiLM in PyTorch
Python
14
star
26

instant-ngp-pytorch

Study for Instant neural graphics primitives (Unofficial)
12
star
27

melgan-pytorch

MelGAN and Tacotron 2 in PyTorch
Python
11
star
28

meshfn

Framework for Human Alignment Learning
Python
8
star
29

nansy-pytorch

Unofficial implementation of Neural Analysis and Synthesis
8
star
30

sarigan-pytorch

Unofficial implementation of Learning Semantic-aware Normalization for Generative Adversarial Networks (SariGAN) in PyTorch
8
star
31

arxiv-sanity

arXiv feed tool that heavily inspired by Arxiv Sanity Preserver
Python
6
star
32

lvpga-pytorch

Implementation of Perceptual Generative Autoencoders in PyTorch
Python
5
star
33

esrgan-pytorch

ESRGAN: Enhanced Super-Resolution Generative Adversarial Networks in PyTorch
3
star
34

dockerfiles

dockerfiles
Dockerfile
3
star
35

sujip

Non-opionated utility library for PyTorch
Python
2
star
36

rosinality.github.io

HTML
2
star
37

langfn

A DSL for LLMs
2
star
38

small-logan-pytorch

Small-GAN and LOGAN in PyTorch
2
star
39

maskrcnn-pytorch

Re-implementation of Mask R-CNN for personal study
2
star
40

usrnet-pytorch

Reimplementation of Deep Unfolding Network for Image Super-Resolution for self study.
2
star
41

synapticmap

Synaptic Map - Simple mindmapping program with directional connections
JavaScript
1
star
42

fill-blank

Paragraph embedding by solving the fill in the blank problems
Python
1
star
43

centernet-pytorch

Re-implementation of CenterNet for personal study
1
star