gitextract_ojvoon3f/ ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── Face_Detection/ │ ├── align_warp_back_multiple_dlib.py │ ├── align_warp_back_multiple_dlib_HR.py │ ├── detect_all_dlib.py │ └── detect_all_dlib_HR.py ├── Face_Enhancement/ │ ├── data/ │ │ ├── __init__.py │ │ ├── base_dataset.py │ │ ├── custom_dataset.py │ │ ├── face_dataset.py │ │ ├── image_folder.py │ │ └── pix2pix_dataset.py │ ├── models/ │ │ ├── __init__.py │ │ ├── networks/ │ │ │ ├── __init__.py │ │ │ ├── architecture.py │ │ │ ├── base_network.py │ │ │ ├── encoder.py │ │ │ ├── generator.py │ │ │ └── normalization.py │ │ └── pix2pix_model.py │ ├── options/ │ │ ├── __init__.py │ │ ├── base_options.py │ │ └── test_options.py │ ├── requirements.txt │ ├── test_face.py │ └── util/ │ ├── __init__.py │ ├── iter_counter.py │ ├── util.py │ └── visualizer.py ├── GUI.py ├── Global/ │ ├── data/ │ │ ├── Create_Bigfile.py │ │ ├── Load_Bigfile.py │ │ ├── __init__.py │ │ ├── base_data_loader.py │ │ ├── base_dataset.py │ │ ├── custom_dataset_data_loader.py │ │ ├── data_loader.py │ │ ├── image_folder.py │ │ └── online_dataset_for_old_photos.py │ ├── detection.py │ ├── detection_models/ │ │ ├── __init__.py │ │ ├── antialiasing.py │ │ └── networks.py │ ├── detection_util/ │ │ └── util.py │ ├── models/ │ │ ├── NonLocal_feature_mapping_model.py │ │ ├── __init__.py │ │ ├── base_model.py │ │ ├── mapping_model.py │ │ ├── models.py │ │ ├── networks.py │ │ ├── pix2pixHD_model.py │ │ └── pix2pixHD_model_DA.py │ ├── options/ │ │ ├── __init__.py │ │ ├── base_options.py │ │ ├── test_options.py │ │ └── train_options.py │ ├── test.py │ ├── train_domain_A.py │ ├── train_domain_B.py │ ├── train_mapping.py │ └── util/ │ ├── __init__.py │ ├── image_pool.py │ ├── util.py │ └── visualizer.py ├── LICENSE ├── README.md ├── SECURITY.md ├── ansible.yaml ├── cog.yaml ├── download-weights ├── kubernetes-pod.yml ├── predict.py ├── requirements.txt └── run.py