gitextract_uedhrux4/ ├── .gitignore ├── README.md └── src/ ├── jonasz/ │ ├── __init__.py │ ├── cifar10/ │ │ ├── __init__.py │ │ └── cifar10_dataset.py │ ├── constants.py │ ├── experiments/ │ │ ├── 2018_08_28/ │ │ │ ├── __init__.py │ │ │ ├── exp_append_channels.py │ │ │ ├── exp_append_simple.py │ │ │ ├── exp_condition.py │ │ │ ├── exp_condition_4vars.py │ │ │ ├── exp_condition_8vars.py │ │ │ ├── exp_consistency_30.py │ │ │ ├── exp_consistency_300.py │ │ │ ├── exp_gradual_loss.py │ │ │ ├── exp_noinfo.py │ │ │ ├── exp_unmask.py │ │ │ └── exp_vanilla.py │ │ └── __init__.py │ ├── gan/ │ │ ├── __init__.py │ │ └── evaluation.py │ ├── lib/ │ │ ├── __init__.py │ │ ├── datasets.py │ │ ├── presentation_model_features.py │ │ ├── progressive_infogan_ipynb_utils.py │ │ ├── tensor_util.py │ │ └── util.py │ ├── notebooks/ │ │ └── generator.ipynb │ ├── nvidia_celeb/ │ │ ├── __init__.py │ │ ├── celeba_align_dataset.py │ │ └── celeba_hq_dataset.py │ ├── progressive_infogan/ │ │ ├── __init__.py │ │ ├── create_animation.py │ │ ├── export_utils.py │ │ ├── gcloud_training/ │ │ │ ├── __init__.py │ │ │ ├── command.sh │ │ │ ├── config.yaml │ │ │ ├── config_4gpus.yaml │ │ │ ├── config_8gpus.yaml │ │ │ ├── determine_config_yaml.py │ │ │ ├── task.py │ │ │ └── test.py │ │ ├── info_utils.py │ │ ├── network_utils.py │ │ ├── networks.py │ │ ├── progressive_infogan_lib.py │ │ ├── progressive_infogan_losses.py │ │ ├── run_evaluation.py │ │ └── train.py │ └── tools/ │ └── tensorboard_gcloud.py └── setup.py