├── .DS_Store ├── .gitattributes ├── README.md ├── criteria ├── .DS_Store ├── loss_functions.py └── lpips │ ├── .DS_Store │ ├── __init__.py │ ├── lpips.py │ ├── networks.py │ └── utils.py ├── docs ├── Deepfake Illustration.png ├── Framework.png └── Watermarked Images Illustration.png ├── face_modules ├── .DS_Store └── model.py ├── network ├── .DS_Store ├── AAD.py ├── Discriminator.py ├── MAE.py └── __init__.py ├── options └── options.py ├── saved_models └── .DS_Store ├── scripts ├── .DS_Store ├── analysis.py ├── evaluation.py ├── extraction.py ├── injection.py └── training.py └── utils ├── .DS_Store ├── common.py └── dataset.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/README.md -------------------------------------------------------------------------------- /criteria/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/criteria/.DS_Store -------------------------------------------------------------------------------- /criteria/loss_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/criteria/loss_functions.py -------------------------------------------------------------------------------- /criteria/lpips/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/criteria/lpips/.DS_Store -------------------------------------------------------------------------------- /criteria/lpips/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /criteria/lpips/lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/criteria/lpips/lpips.py -------------------------------------------------------------------------------- /criteria/lpips/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/criteria/lpips/networks.py -------------------------------------------------------------------------------- /criteria/lpips/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/criteria/lpips/utils.py -------------------------------------------------------------------------------- /docs/Deepfake Illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/docs/Deepfake Illustration.png -------------------------------------------------------------------------------- /docs/Framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/docs/Framework.png -------------------------------------------------------------------------------- /docs/Watermarked Images Illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/docs/Watermarked Images Illustration.png -------------------------------------------------------------------------------- /face_modules/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/face_modules/.DS_Store -------------------------------------------------------------------------------- /face_modules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/face_modules/model.py -------------------------------------------------------------------------------- /network/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/network/.DS_Store -------------------------------------------------------------------------------- /network/AAD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/network/AAD.py -------------------------------------------------------------------------------- /network/Discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/network/Discriminator.py -------------------------------------------------------------------------------- /network/MAE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/network/MAE.py -------------------------------------------------------------------------------- /network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /options/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/options/options.py -------------------------------------------------------------------------------- /saved_models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/saved_models/.DS_Store -------------------------------------------------------------------------------- /scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/scripts/.DS_Store -------------------------------------------------------------------------------- /scripts/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/scripts/analysis.py -------------------------------------------------------------------------------- /scripts/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/scripts/evaluation.py -------------------------------------------------------------------------------- /scripts/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/scripts/extraction.py -------------------------------------------------------------------------------- /scripts/injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/scripts/injection.py -------------------------------------------------------------------------------- /scripts/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/scripts/training.py -------------------------------------------------------------------------------- /utils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/utils/.DS_Store -------------------------------------------------------------------------------- /utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/utils/common.py -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuanZhao940711/Watermarking_In_FaceID/HEAD/utils/dataset.py --------------------------------------------------------------------------------