gitextract_joocyhq2/ ├── FQ-BigGAN/ │ ├── BigGAN.py │ ├── BigGANdeep.py │ ├── LICENSE │ ├── TFHub/ │ │ ├── README.md │ │ ├── biggan_v1.py │ │ └── converter.py │ ├── animal_hash.py │ ├── calculate_inception_moments.py │ ├── datasets.py │ ├── inception_tf13.py │ ├── inception_utils.py │ ├── layers.py │ ├── losses.py │ ├── make_hdf5.py │ ├── sample.py │ ├── scripts/ │ │ ├── launch_C10.sh │ │ ├── launch_C100.sh │ │ ├── launch_I128_bs256x4.sh │ │ ├── launch_I64_bs128x4.sh │ │ └── utils/ │ │ ├── duplicate.sh │ │ ├── prepare_data.sh │ │ └── trans.py │ ├── sync_batchnorm/ │ │ ├── __init__.py │ │ ├── batchnorm.py │ │ ├── batchnorm_reimpl.py │ │ ├── comm.py │ │ ├── replicate.py │ │ └── unittest.py │ ├── train.py │ ├── train_fns.py │ ├── utility/ │ │ ├── extract_imagenet.py │ │ └── untar.py │ ├── utils.py │ └── vq_layer.py ├── FQ-StyleGAN/ │ ├── LICENSE.txt │ ├── dataset_tool.py │ ├── dnnlib/ │ │ ├── __init__.py │ │ ├── submission/ │ │ │ ├── __init__.py │ │ │ ├── internal/ │ │ │ │ ├── __init__.py │ │ │ │ └── local.py │ │ │ ├── run_context.py │ │ │ └── submit.py │ │ ├── tflib/ │ │ │ ├── __init__.py │ │ │ ├── autosummary.py │ │ │ ├── custom_ops.py │ │ │ ├── network.py │ │ │ ├── ops/ │ │ │ │ ├── __init__.py │ │ │ │ ├── fused_bias_act.cu │ │ │ │ ├── fused_bias_act.py │ │ │ │ ├── upfirdn_2d.cu │ │ │ │ └── upfirdn_2d.py │ │ │ ├── optimizer.py │ │ │ └── tfutil.py │ │ └── util.py │ ├── metrics/ │ │ ├── __init__.py │ │ ├── frechet_inception_distance.py │ │ ├── inception_score.py │ │ ├── linear_separability.py │ │ ├── metric_base.py │ │ ├── metric_defaults.py │ │ ├── perceptual_path_length.py │ │ └── precision_recall.py │ ├── pretrained_networks.py │ ├── projector.py │ ├── run_generator.py │ ├── run_metrics.py │ ├── run_projector.py │ ├── run_training.py │ ├── test_nvcc │ ├── test_nvcc.cu │ └── training/ │ ├── __init__.py │ ├── dataset.py │ ├── loss.py │ ├── misc.py │ ├── networks_stylegan.py │ ├── networks_stylegan2.py │ └── training_loop.py ├── FQ-U-GAT-IT/ │ ├── LICENSE │ ├── UGATIT.py │ ├── dataset/ │ │ └── download_dataset_1.sh │ ├── download_dataset_2.sh │ ├── logger.py │ ├── main.py │ ├── ops.py │ ├── utils.py │ └── vq_layer.py └── README.md