gitextract_vn0la05j/ ├── .gitignore ├── 2d_mix/ │ ├── .gitignore │ ├── __init__.py │ ├── config.py │ ├── evaluation.py │ ├── inputs.py │ ├── models/ │ │ ├── __init__.py │ │ └── cluster.py │ ├── train.py │ └── visualizations.py ├── LICENSE ├── README.md ├── cluster_metrics.py ├── clusterers/ │ ├── __init__.py │ ├── base_clusterer.py │ ├── kmeans.py │ ├── online.py │ ├── random_labels.py │ └── selfcondgan.py ├── configs/ │ ├── cifar/ │ │ ├── conditional.yaml │ │ ├── default.yaml │ │ ├── selfcondgan.yaml │ │ └── unconditional.yaml │ ├── default.yaml │ ├── imagenet/ │ │ ├── conditional.yaml │ │ ├── default.yaml │ │ ├── selfcondgan.yaml │ │ └── unconditional.yaml │ ├── places/ │ │ ├── conditional.yaml │ │ ├── default.yaml │ │ ├── selfcondgan.yaml │ │ └── unconditional.yaml │ ├── pretrained/ │ │ ├── imagenet/ │ │ │ ├── conditional.yaml │ │ │ ├── selfcondgan.yaml │ │ │ └── unconditional.yaml │ │ └── places/ │ │ ├── conditional.yaml │ │ ├── selfcondgan.yaml │ │ └── unconditional.yaml │ └── stacked_mnist/ │ ├── conditional.yaml │ ├── default.yaml │ ├── selfcondgan.yaml │ └── unconditional.yaml ├── gan_training/ │ ├── __init__.py │ ├── checkpoints.py │ ├── config.py │ ├── distributions.py │ ├── eval.py │ ├── inputs.py │ ├── logger.py │ ├── metrics/ │ │ ├── __init__.py │ │ ├── clustering_metrics.py │ │ ├── fid.py │ │ ├── inception_score.py │ │ └── tf_is/ │ │ ├── LICENSE │ │ ├── README.md │ │ └── inception_score.py │ ├── models/ │ │ ├── __init__.py │ │ ├── blocks.py │ │ ├── dcgan_deep.py │ │ ├── dcgan_shallow.py │ │ ├── resnet2.py │ │ ├── resnet2s.py │ │ └── resnet3.py │ ├── train.py │ └── utils.py ├── metrics.py ├── requirements.txt ├── seeded_sampler.py ├── seeing/ │ ├── frechet_distance.py │ ├── fsd.py │ ├── lightbox.html │ ├── parallelfolder.py │ ├── pbar.py │ ├── pidfile.py │ ├── sampler.py │ ├── segmenter.py │ ├── upsegmodel/ │ │ ├── __init__.py │ │ ├── models.py │ │ ├── prroi_pool/ │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── build.py │ │ │ ├── functional.py │ │ │ ├── prroi_pool.py │ │ │ ├── src/ │ │ │ │ ├── prroi_pooling_gpu.c │ │ │ │ ├── prroi_pooling_gpu.h │ │ │ │ ├── prroi_pooling_gpu_impl.cu │ │ │ │ └── prroi_pooling_gpu_impl.cuh │ │ │ └── test_prroi_pooling2d.py │ │ ├── resnet.py │ │ └── resnext.py │ ├── yz_dataset.py │ └── zdataset.py ├── train.py ├── utils/ │ ├── classifiers/ │ │ ├── __init__.py │ │ ├── cifar.py │ │ ├── imagenet.py │ │ ├── imagenet_class_index.json │ │ ├── places.py │ │ ├── pytorch_playground/ │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cifar/ │ │ │ │ ├── __init__.py │ │ │ │ ├── dataset.py │ │ │ │ ├── model.py │ │ │ │ └── train.py │ │ │ ├── quantize.py │ │ │ ├── requirements.txt │ │ │ ├── roadmap_zh.md │ │ │ ├── setup.py │ │ │ └── utee/ │ │ │ ├── __init__.py │ │ │ ├── misc.py │ │ │ ├── quant.py │ │ │ └── selector.py │ │ └── stacked_mnist.py │ ├── get_empirical_distribution.py │ ├── get_gt_imgs.py │ └── np_to_pt_img.py └── visualize_clusters.py