gitextract_02nfnavz/ ├── BigGAN_utils/ │ ├── BigGAN.py │ ├── BigGANdeep.py │ ├── LICENSE │ ├── README.md │ ├── TFHub/ │ │ ├── biggan_v1.py │ │ └── converter.py │ ├── __init__.py │ ├── animal_hash.py │ ├── binary_utils.py │ ├── calculate_inception_moments.py │ ├── datasets.py │ ├── inception_tf13.py │ ├── inception_utils.py │ ├── layers.py │ ├── logs/ │ │ ├── BigGAN_ch96_bs256x8.jsonl │ │ ├── compare_IS.m │ │ ├── metalog.txt │ │ ├── process_inception_log.m │ │ └── process_training.m │ ├── losses.py │ ├── make_hdf5.py │ ├── sample.py │ ├── scripts/ │ │ ├── launch_BigGAN_bs256x8.sh │ │ ├── launch_BigGAN_bs512x4.sh │ │ ├── launch_BigGAN_ch64_bs256x8.sh │ │ ├── launch_BigGAN_deep.sh │ │ ├── launch_SAGAN_bs128x2_ema.sh │ │ ├── launch_SNGAN.sh │ │ ├── launch_cifar_ema.sh │ │ ├── sample_BigGAN_bs256x8.sh │ │ ├── sample_cifar_ema.sh │ │ └── utils/ │ │ ├── duplicate.sh │ │ └── prepare_data.sh │ ├── sync_batchnorm/ │ │ ├── __init__.py │ │ ├── batchnorm.py │ │ ├── batchnorm_reimpl.py │ │ ├── comm.py │ │ ├── replicate.py │ │ └── unittest.py │ ├── train.py │ ├── train_fns.py │ ├── utils.py │ └── weights/ │ └── README.md ├── DiffAugment_pytorch.py ├── LICENSE ├── README.md ├── fusedream_generator.py └── fusedream_utils.py