├── README.md ├── assets ├── image-20220419112318402.png └── smile.png ├── configs.yaml ├── configs ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── data_configs.cpython-38.pyc │ ├── paths_config.cpython-36.pyc │ ├── paths_config.cpython-38.pyc │ ├── paths_config.cpython-39.pyc │ └── transforms_config.cpython-38.pyc ├── data_configs.py ├── paths_config.py └── transforms_config.py ├── datasets ├── __pycache__ │ └── img_dataset.cpython-38.pyc └── img_dataset.py ├── inference.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── e4e.cpython-36.pyc │ ├── e4e.cpython-38.pyc │ ├── e4e.cpython-39.pyc │ ├── img2latent.cpython-38.pyc │ ├── latent2latent.cpython-36.pyc │ ├── latent2latent.cpython-38.pyc │ ├── latent_editor.cpython-36.pyc │ ├── latent_editor.cpython-38.pyc │ ├── psp.cpython-38.pyc │ └── psp.cpython-39.pyc ├── attribute_classifier │ ├── BranchedTiny.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── BranchedTiny.cpython-36.pyc │ │ ├── BranchedTiny.cpython-38.pyc │ │ ├── BranchedTiny.cpython-39.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-38.pyc │ │ └── __init__.cpython-39.pyc │ └── attributes_list.md ├── e4e.py ├── e4e_modules │ ├── __init__.py │ ├── discriminator.py │ └── latent_codes_pool.py ├── encoders │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── fpn_encoders.cpython-38.pyc │ │ ├── fpn_encoders.cpython-39.pyc │ │ ├── helpers.cpython-36.pyc │ │ ├── helpers.cpython-38.pyc │ │ ├── helpers.cpython-39.pyc │ │ ├── map2style.cpython-36.pyc │ │ ├── map2style.cpython-38.pyc │ │ ├── map2style.cpython-39.pyc │ │ ├── restyle_e4e_encoders.cpython-36.pyc │ │ ├── restyle_e4e_encoders.cpython-38.pyc │ │ ├── restyle_e4e_encoders.cpython-39.pyc │ │ ├── restyle_psp_encoders.cpython-38.pyc │ │ └── restyle_psp_encoders.cpython-39.pyc │ ├── fpn_encoders.py │ ├── helpers.py │ ├── map2style.py │ ├── model_irse.py │ ├── restyle_e4e_encoders.py │ └── restyle_psp_encoders.py ├── latent2latent.py ├── latent_editor.py ├── mtcnn │ ├── __init__.py │ ├── mtcnn.py │ └── mtcnn_pytorch │ │ ├── __init__.py │ │ └── src │ │ ├── __init__.py │ │ ├── align_trans.py │ │ ├── box_utils.py │ │ ├── detector.py │ │ ├── first_stage.py │ │ ├── get_nets.py │ │ ├── matlab_cp2tform.py │ │ ├── visualization_utils.py │ │ └── weights │ │ ├── onet.npy │ │ ├── pnet.npy │ │ └── rnet.npy ├── psp.py └── stylegan2 │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── model.cpython-36.pyc │ ├── model.cpython-38.pyc │ └── model.cpython-39.pyc │ ├── model.py │ └── op │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-38.pyc │ ├── __init__.cpython-39.pyc │ ├── fused_act.cpython-36.pyc │ ├── fused_act.cpython-38.pyc │ ├── fused_act.cpython-39.pyc │ ├── upfirdn2d.cpython-36.pyc │ ├── upfirdn2d.cpython-38.pyc │ └── upfirdn2d.cpython-39.pyc │ ├── fused_act.py │ ├── fused_bias_act.cpp │ ├── fused_bias_act_kernel.cu │ ├── upfirdn2d.cpp │ ├── upfirdn2d.py │ └── upfirdn2d_kernel.cu ├── pretrained ├── boundaries_anycost-ffhq-config-f.pt ├── bushy_eyebrows.pt └── smiling.pt ├── requirements.txt ├── test ├── 00808.png ├── 00809.png ├── 04948.png ├── 11.png └── test.jpg ├── training ├── __pycache__ │ ├── train_model.cpython-36.pyc │ └── train_model.cpython-38.pyc ├── train_model.py └── trainer.py └── utils ├── FaceExtractor ├── Extractor.py ├── Retinaface │ ├── LICENSE.MIT │ ├── Retinaface.py │ ├── __pycache__ │ │ ├── Retinaface.cpython-36.pyc │ │ ├── Retinaface.cpython-37.pyc │ │ └── Retinaface.cpython-38.pyc │ ├── data │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── config.cpython-36.pyc │ │ │ ├── config.cpython-37.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── data_augment.cpython-37.pyc │ │ │ ├── wider_face.cpython-36.pyc │ │ │ ├── wider_face.cpython-37.pyc │ │ │ └── wider_face.cpython-38.pyc │ │ ├── config.py │ │ ├── data_augment.py │ │ └── wider_face.py │ ├── layers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── __init__.cpython-38.pyc │ │ ├── functions │ │ │ ├── __pycache__ │ │ │ │ ├── prior_box.cpython-36.pyc │ │ │ │ ├── prior_box.cpython-37.pyc │ │ │ │ └── prior_box.cpython-38.pyc │ │ │ └── prior_box.py │ │ └── modules │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── multibox_loss.cpython-37.pyc │ │ │ └── multibox_loss.py │ ├── models │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── net.cpython-36.pyc │ │ │ ├── net.cpython-37.pyc │ │ │ ├── net.cpython-38.pyc │ │ │ ├── retinaface.cpython-36.pyc │ │ │ ├── retinaface.cpython-37.pyc │ │ │ └── retinaface.cpython-38.pyc │ │ ├── net.py │ │ └── retinaface.py │ ├── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── box_utils.cpython-36.pyc │ │ │ ├── box_utils.cpython-37.pyc │ │ │ └── box_utils.cpython-38.pyc │ │ ├── box_utils.py │ │ ├── nms │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── py_cpu_nms.cpython-36.pyc │ │ │ │ ├── py_cpu_nms.cpython-37.pyc │ │ │ │ └── py_cpu_nms.cpython-38.pyc │ │ │ └── py_cpu_nms.py │ │ └── timer.py │ └── weights │ │ └── mobilenet0.25_Final.pth ├── __init__.py ├── __pycache__ │ ├── Extractor.cpython-36.pyc │ ├── Extractor.cpython-38.pyc │ ├── __init__.cpython-36.pyc │ └── __init__.cpython-38.pyc ├── common │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── utils.cpython-36.pyc │ │ ├── utils.cpython-37.pyc │ │ └── utils.cpython-38.pyc │ └── utils.py └── models │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── basenet.cpython-36.pyc │ ├── basenet.cpython-37.pyc │ ├── basenet.cpython-38.pyc │ ├── mobilefacenet.cpython-36.pyc │ ├── mobilefacenet.cpython-37.pyc │ ├── mobilefacenet.cpython-38.pyc │ ├── pfld_compressed.cpython-37.pyc │ └── pfld_compressed.cpython-38.pyc │ ├── basenet.py │ ├── mobilefacenet.py │ ├── onnx │ ├── version-RFB-320.onnx │ ├── version-RFB-320_simplified.onnx │ ├── version-RFB-320_without_postprocessing.onnx │ ├── version-slim-320.onnx │ ├── version-slim-320_simplified.onnx │ └── version-slim-320_without_postprocessing.onnx │ ├── pfld_compressed.py │ └── voc-model-labels.txt ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc ├── face_extractor.cpython-36.pyc ├── latent_utils.cpython-36.pyc └── utils.cpython-36.pyc ├── data_utils.py ├── face_extractor.py ├── latent_utils.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/README.md -------------------------------------------------------------------------------- /assets/image-20220419112318402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/assets/image-20220419112318402.png -------------------------------------------------------------------------------- /assets/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/assets/smile.png -------------------------------------------------------------------------------- /configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs.yaml -------------------------------------------------------------------------------- /configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configs/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /configs/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /configs/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /configs/__pycache__/data_configs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs/__pycache__/data_configs.cpython-38.pyc -------------------------------------------------------------------------------- /configs/__pycache__/paths_config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs/__pycache__/paths_config.cpython-36.pyc -------------------------------------------------------------------------------- /configs/__pycache__/paths_config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs/__pycache__/paths_config.cpython-38.pyc -------------------------------------------------------------------------------- /configs/__pycache__/paths_config.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs/__pycache__/paths_config.cpython-39.pyc -------------------------------------------------------------------------------- /configs/__pycache__/transforms_config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs/__pycache__/transforms_config.cpython-38.pyc -------------------------------------------------------------------------------- /configs/data_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs/data_configs.py -------------------------------------------------------------------------------- /configs/paths_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs/paths_config.py -------------------------------------------------------------------------------- /configs/transforms_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/configs/transforms_config.py -------------------------------------------------------------------------------- /datasets/__pycache__/img_dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/datasets/__pycache__/img_dataset.cpython-38.pyc -------------------------------------------------------------------------------- /datasets/img_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/datasets/img_dataset.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/inference.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /models/__pycache__/e4e.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/e4e.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/e4e.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/e4e.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/e4e.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/e4e.cpython-39.pyc -------------------------------------------------------------------------------- /models/__pycache__/img2latent.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/img2latent.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/latent2latent.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/latent2latent.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/latent2latent.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/latent2latent.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/latent_editor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/latent_editor.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/latent_editor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/latent_editor.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/psp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/psp.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/psp.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/__pycache__/psp.cpython-39.pyc -------------------------------------------------------------------------------- /models/attribute_classifier/BranchedTiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/attribute_classifier/BranchedTiny.py -------------------------------------------------------------------------------- /models/attribute_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/attribute_classifier/__init__.py -------------------------------------------------------------------------------- /models/attribute_classifier/__pycache__/BranchedTiny.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/attribute_classifier/__pycache__/BranchedTiny.cpython-36.pyc -------------------------------------------------------------------------------- /models/attribute_classifier/__pycache__/BranchedTiny.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/attribute_classifier/__pycache__/BranchedTiny.cpython-38.pyc -------------------------------------------------------------------------------- /models/attribute_classifier/__pycache__/BranchedTiny.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/attribute_classifier/__pycache__/BranchedTiny.cpython-39.pyc -------------------------------------------------------------------------------- /models/attribute_classifier/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/attribute_classifier/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/attribute_classifier/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/attribute_classifier/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/attribute_classifier/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/attribute_classifier/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /models/attribute_classifier/attributes_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/attribute_classifier/attributes_list.md -------------------------------------------------------------------------------- /models/e4e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/e4e.py -------------------------------------------------------------------------------- /models/e4e_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/e4e_modules/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/e4e_modules/discriminator.py -------------------------------------------------------------------------------- /models/e4e_modules/latent_codes_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/e4e_modules/latent_codes_pool.py -------------------------------------------------------------------------------- /models/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/encoders/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/fpn_encoders.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/fpn_encoders.cpython-38.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/fpn_encoders.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/fpn_encoders.cpython-39.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/helpers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/helpers.cpython-36.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/helpers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/helpers.cpython-38.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/helpers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/helpers.cpython-39.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/map2style.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/map2style.cpython-36.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/map2style.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/map2style.cpython-38.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/map2style.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/map2style.cpython-39.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/restyle_e4e_encoders.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/restyle_e4e_encoders.cpython-36.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/restyle_e4e_encoders.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/restyle_e4e_encoders.cpython-38.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/restyle_e4e_encoders.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/restyle_e4e_encoders.cpython-39.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/restyle_psp_encoders.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/restyle_psp_encoders.cpython-38.pyc -------------------------------------------------------------------------------- /models/encoders/__pycache__/restyle_psp_encoders.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/__pycache__/restyle_psp_encoders.cpython-39.pyc -------------------------------------------------------------------------------- /models/encoders/fpn_encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/fpn_encoders.py -------------------------------------------------------------------------------- /models/encoders/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/helpers.py -------------------------------------------------------------------------------- /models/encoders/map2style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/map2style.py -------------------------------------------------------------------------------- /models/encoders/model_irse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/model_irse.py -------------------------------------------------------------------------------- /models/encoders/restyle_e4e_encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/restyle_e4e_encoders.py -------------------------------------------------------------------------------- /models/encoders/restyle_psp_encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/encoders/restyle_psp_encoders.py -------------------------------------------------------------------------------- /models/latent2latent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/latent2latent.py -------------------------------------------------------------------------------- /models/latent_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/latent_editor.py -------------------------------------------------------------------------------- /models/mtcnn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/mtcnn/mtcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn.py -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn_pytorch/src/__init__.py -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/src/align_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn_pytorch/src/align_trans.py -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/src/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn_pytorch/src/box_utils.py -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/src/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn_pytorch/src/detector.py -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/src/first_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn_pytorch/src/first_stage.py -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/src/get_nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn_pytorch/src/get_nets.py -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/src/matlab_cp2tform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn_pytorch/src/matlab_cp2tform.py -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/src/visualization_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn_pytorch/src/visualization_utils.py -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/src/weights/onet.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn_pytorch/src/weights/onet.npy -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/src/weights/pnet.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn_pytorch/src/weights/pnet.npy -------------------------------------------------------------------------------- /models/mtcnn/mtcnn_pytorch/src/weights/rnet.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/mtcnn/mtcnn_pytorch/src/weights/rnet.npy -------------------------------------------------------------------------------- /models/psp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/psp.py -------------------------------------------------------------------------------- /models/stylegan2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/stylegan2/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/stylegan2/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/stylegan2/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /models/stylegan2/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /models/stylegan2/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /models/stylegan2/__pycache__/model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/__pycache__/model.cpython-39.pyc -------------------------------------------------------------------------------- /models/stylegan2/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/model.py -------------------------------------------------------------------------------- /models/stylegan2/op/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/__init__.py -------------------------------------------------------------------------------- /models/stylegan2/op/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/stylegan2/op/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/stylegan2/op/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /models/stylegan2/op/__pycache__/fused_act.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/__pycache__/fused_act.cpython-36.pyc -------------------------------------------------------------------------------- /models/stylegan2/op/__pycache__/fused_act.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/__pycache__/fused_act.cpython-38.pyc -------------------------------------------------------------------------------- /models/stylegan2/op/__pycache__/fused_act.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/__pycache__/fused_act.cpython-39.pyc -------------------------------------------------------------------------------- /models/stylegan2/op/__pycache__/upfirdn2d.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/__pycache__/upfirdn2d.cpython-36.pyc -------------------------------------------------------------------------------- /models/stylegan2/op/__pycache__/upfirdn2d.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/__pycache__/upfirdn2d.cpython-38.pyc -------------------------------------------------------------------------------- /models/stylegan2/op/__pycache__/upfirdn2d.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/__pycache__/upfirdn2d.cpython-39.pyc -------------------------------------------------------------------------------- /models/stylegan2/op/fused_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/fused_act.py -------------------------------------------------------------------------------- /models/stylegan2/op/fused_bias_act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/fused_bias_act.cpp -------------------------------------------------------------------------------- /models/stylegan2/op/fused_bias_act_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/fused_bias_act_kernel.cu -------------------------------------------------------------------------------- /models/stylegan2/op/upfirdn2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/upfirdn2d.cpp -------------------------------------------------------------------------------- /models/stylegan2/op/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/upfirdn2d.py -------------------------------------------------------------------------------- /models/stylegan2/op/upfirdn2d_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/models/stylegan2/op/upfirdn2d_kernel.cu -------------------------------------------------------------------------------- /pretrained/boundaries_anycost-ffhq-config-f.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/pretrained/boundaries_anycost-ffhq-config-f.pt -------------------------------------------------------------------------------- /pretrained/bushy_eyebrows.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/pretrained/bushy_eyebrows.pt -------------------------------------------------------------------------------- /pretrained/smiling.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/pretrained/smiling.pt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/requirements.txt -------------------------------------------------------------------------------- /test/00808.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/test/00808.png -------------------------------------------------------------------------------- /test/00809.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/test/00809.png -------------------------------------------------------------------------------- /test/04948.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/test/04948.png -------------------------------------------------------------------------------- /test/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/test/11.png -------------------------------------------------------------------------------- /test/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/test/test.jpg -------------------------------------------------------------------------------- /training/__pycache__/train_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/training/__pycache__/train_model.cpython-36.pyc -------------------------------------------------------------------------------- /training/__pycache__/train_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/training/__pycache__/train_model.cpython-38.pyc -------------------------------------------------------------------------------- /training/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/training/train_model.py -------------------------------------------------------------------------------- /training/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/training/trainer.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Extractor.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/LICENSE.MIT -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/Retinaface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/Retinaface.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/__pycache__/Retinaface.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/__pycache__/Retinaface.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/__pycache__/Retinaface.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/__pycache__/Retinaface.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/__pycache__/Retinaface.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/__pycache__/Retinaface.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/__init__.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/__pycache__/data_augment.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/__pycache__/data_augment.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/__pycache__/wider_face.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/__pycache__/wider_face.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/__pycache__/wider_face.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/__pycache__/wider_face.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/__pycache__/wider_face.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/__pycache__/wider_face.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/config.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/data_augment.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/data/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/data/wider_face.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/__init__.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/functions/__pycache__/prior_box.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/functions/__pycache__/prior_box.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/functions/__pycache__/prior_box.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/functions/__pycache__/prior_box.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/functions/__pycache__/prior_box.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/functions/__pycache__/prior_box.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/functions/prior_box.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/modules/__init__.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/modules/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/modules/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/modules/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/modules/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/modules/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/modules/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/modules/__pycache__/multibox_loss.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/modules/__pycache__/multibox_loss.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/__pycache__/net.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/models/__pycache__/net.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/__pycache__/net.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/models/__pycache__/net.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/__pycache__/net.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/models/__pycache__/net.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/__pycache__/retinaface.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/models/__pycache__/retinaface.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/__pycache__/retinaface.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/models/__pycache__/retinaface.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/__pycache__/retinaface.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/models/__pycache__/retinaface.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/models/net.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/models/retinaface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/models/retinaface.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/__pycache__/box_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/__pycache__/box_utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/__pycache__/box_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/__pycache__/box_utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/__pycache__/box_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/__pycache__/box_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/box_utils.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/nms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/nms/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/nms/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/nms/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/nms/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/nms/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/nms/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/nms/__pycache__/py_cpu_nms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/nms/__pycache__/py_cpu_nms.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/nms/__pycache__/py_cpu_nms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/nms/__pycache__/py_cpu_nms.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/nms/__pycache__/py_cpu_nms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/nms/__pycache__/py_cpu_nms.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/nms/py_cpu_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/nms/py_cpu_nms.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/utils/timer.py -------------------------------------------------------------------------------- /utils/FaceExtractor/Retinaface/weights/mobilenet0.25_Final.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/Retinaface/weights/mobilenet0.25_Final.pth -------------------------------------------------------------------------------- /utils/FaceExtractor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/FaceExtractor/__pycache__/Extractor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/__pycache__/Extractor.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/__pycache__/Extractor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/__pycache__/Extractor.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/FaceExtractor/common/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/common/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/common/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/common/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/common/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/common/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/common/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/common/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/common/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/common/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/common/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/common/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/common/utils.py -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__init__.py: -------------------------------------------------------------------------------- 1 | from .basenet import * -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__pycache__/basenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/__pycache__/basenet.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__pycache__/basenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/__pycache__/basenet.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__pycache__/basenet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/__pycache__/basenet.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__pycache__/mobilefacenet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/__pycache__/mobilefacenet.cpython-36.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__pycache__/mobilefacenet.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/__pycache__/mobilefacenet.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__pycache__/mobilefacenet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/__pycache__/mobilefacenet.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__pycache__/pfld_compressed.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/__pycache__/pfld_compressed.cpython-37.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/models/__pycache__/pfld_compressed.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/__pycache__/pfld_compressed.cpython-38.pyc -------------------------------------------------------------------------------- /utils/FaceExtractor/models/basenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/basenet.py -------------------------------------------------------------------------------- /utils/FaceExtractor/models/mobilefacenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/mobilefacenet.py -------------------------------------------------------------------------------- /utils/FaceExtractor/models/onnx/version-RFB-320.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/onnx/version-RFB-320.onnx -------------------------------------------------------------------------------- /utils/FaceExtractor/models/onnx/version-RFB-320_simplified.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/onnx/version-RFB-320_simplified.onnx -------------------------------------------------------------------------------- /utils/FaceExtractor/models/onnx/version-RFB-320_without_postprocessing.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/onnx/version-RFB-320_without_postprocessing.onnx -------------------------------------------------------------------------------- /utils/FaceExtractor/models/onnx/version-slim-320.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/onnx/version-slim-320.onnx -------------------------------------------------------------------------------- /utils/FaceExtractor/models/onnx/version-slim-320_simplified.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/onnx/version-slim-320_simplified.onnx -------------------------------------------------------------------------------- /utils/FaceExtractor/models/onnx/version-slim-320_without_postprocessing.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/onnx/version-slim-320_without_postprocessing.onnx -------------------------------------------------------------------------------- /utils/FaceExtractor/models/pfld_compressed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/FaceExtractor/models/pfld_compressed.py -------------------------------------------------------------------------------- /utils/FaceExtractor/models/voc-model-labels.txt: -------------------------------------------------------------------------------- 1 | BACKGROUND 2 | face -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/face_extractor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/__pycache__/face_extractor.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/latent_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/__pycache__/latent_utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/data_utils.py -------------------------------------------------------------------------------- /utils/face_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/face_extractor.py -------------------------------------------------------------------------------- /utils/latent_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/latent_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/850552586/Latent-To-Latent/HEAD/utils/utils.py --------------------------------------------------------------------------------