gitextract_zpv_duhy/ ├── .gitignore ├── LICENSE.txt ├── classification-NO-activation-function/ │ ├── README.md │ ├── backbones/ │ │ ├── pinet_1x1_norelu.py │ │ ├── pinet_1x1_relu.py │ │ ├── pinet_norelu.py │ │ ├── pinet_relu.py │ │ └── resnet_norelu.py │ └── logs/ │ ├── pinet_1x1_norelu.log │ ├── pinet_1x1_relu.log │ ├── pinet_norelu.log │ ├── pinet_relu.log │ └── resnet_norelu.log ├── face_recognition/ │ ├── README.md │ ├── __init__.py │ ├── config.py │ ├── data/ │ │ ├── build_eval_pack.py │ │ ├── lfw/ │ │ │ └── pairs_label.txt │ │ └── rec2image.py │ ├── eval/ │ │ ├── lfw.py │ │ └── verification.py │ ├── flops_counter.py │ ├── image_iter.py │ ├── metric.py │ ├── models/ │ │ ├── MS1Mretina-polynet50-arcface/ │ │ │ ├── log_retina_r50newton_arcface.txt │ │ │ └── model-symbol.json │ │ └── MS1Mretina-resnet50-arcface/ │ │ ├── log_retina_r50_arcface.txt │ │ └── model-symbol.json │ ├── parall_module_local_v1.py │ ├── sample_config.py │ ├── symbol/ │ │ ├── fdensenet.py │ │ ├── fmnasnet.py │ │ ├── fmobilefacenet.py │ │ ├── fmobilenet.py │ │ ├── fresnet.py │ │ ├── memonger.py │ │ ├── symbol_utils.py │ │ └── vargfacenet.py │ ├── train.py │ ├── train_parall.py │ └── triplet_image_iter.py ├── image_generation_chainer/ │ ├── __init__.py │ ├── datasets/ │ │ └── mnist.py │ ├── dis_models/ │ │ ├── __init__.py │ │ ├── resblocks_dis.py │ │ └── snresnet_32.py │ ├── evaluations/ │ │ ├── __init__.py │ │ ├── extensions.py │ │ └── ndb.py │ ├── gen_models/ │ │ └── cnn_gen_custom_prodpoly.py │ ├── jobs/ │ │ └── pinet/ │ │ ├── fashionmnist_cnn_prodpoly_linear.yml │ │ └── train_mn_mnist.py │ ├── readme.rst │ ├── source/ │ │ ├── __init__.py │ │ ├── functions/ │ │ │ ├── __init__.py │ │ │ ├── cond_bn_wrapper.py │ │ │ ├── losses.py │ │ │ └── max_sv.py │ │ ├── inception/ │ │ │ ├── __init__.py │ │ │ ├── download.py │ │ │ ├── example.py │ │ │ ├── inception_score.py │ │ │ └── inception_score_tf.py │ │ ├── links/ │ │ │ ├── __init__.py │ │ │ ├── categorical_conditional_batch_normalization.py │ │ │ ├── conditional_batch_normalization.py │ │ │ ├── resnet_layer.py │ │ │ ├── sn_convolution_2d.py │ │ │ ├── sn_convolution_nd.py │ │ │ ├── sn_dilated_convolution_2d.py │ │ │ ├── sn_embed_id.py │ │ │ ├── sn_linear.py │ │ │ └── sn_symmetric_linear.py │ │ ├── misc_train_utils.py │ │ ├── miscs/ │ │ │ ├── __init__.py │ │ │ ├── model_moiving_average.py │ │ │ └── random_samples.py │ │ └── yaml_utils.py │ └── updaters/ │ └── gans/ │ └── updater.py ├── image_generation_pytorch/ │ ├── FID/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __init__.py │ │ ├── fid_score.py │ │ └── inception.py │ ├── IS/ │ │ ├── LICENSE.md │ │ ├── README.md │ │ └── inception_score.py │ ├── README.rst │ ├── data_loader.py │ ├── logger.py │ ├── main.py │ ├── model.py │ └── solver.py ├── mesh_pi_nets/ │ ├── .gitignore │ ├── README.md │ ├── autoencoder_dataset.py │ ├── datasets/ │ │ ├── COMA/ │ │ │ └── templates/ │ │ │ ├── COMA_downsample/ │ │ │ │ └── downsampling_matrices.pkl │ │ │ └── template.obj │ │ └── DFAUST/ │ │ └── templates/ │ │ ├── COMA_downsample/ │ │ │ └── downsampling_matrices.pkl │ │ └── template.obj │ ├── mesh_sampling.py │ ├── models.py │ ├── shape_data.py │ ├── spiral_pi_nets.py │ ├── spiral_utils.py │ ├── test_funcs.py │ └── train_funcs.py └── readme.rst