├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── environment.yml ├── gan_vs_real_detector.py ├── roc_curves.ipynb └── utils ├── architectures.py └── python_patch_extractor ├── PatchExtractor.py └── __init__.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-language=Python 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polimi-ispl/GAN-image-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polimi-ispl/GAN-image-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polimi-ispl/GAN-image-detection/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polimi-ispl/GAN-image-detection/HEAD/environment.yml -------------------------------------------------------------------------------- /gan_vs_real_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polimi-ispl/GAN-image-detection/HEAD/gan_vs_real_detector.py -------------------------------------------------------------------------------- /roc_curves.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polimi-ispl/GAN-image-detection/HEAD/roc_curves.ipynb -------------------------------------------------------------------------------- /utils/architectures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polimi-ispl/GAN-image-detection/HEAD/utils/architectures.py -------------------------------------------------------------------------------- /utils/python_patch_extractor/PatchExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polimi-ispl/GAN-image-detection/HEAD/utils/python_patch_extractor/PatchExtractor.py -------------------------------------------------------------------------------- /utils/python_patch_extractor/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------