├── .dockerignore ├── .gitattributes ├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── compute_metrics.py ├── data ├── commercial_tools.csv ├── synthbuster_checksums.md5 ├── synthbuster_download.sh ├── synthwildx │ ├── README.md │ ├── download_synthwildx.py │ └── list.csv ├── test_set │ └── README.md └── train_set │ └── README.md ├── docs ├── _config.yml ├── graph.svg └── index.md ├── main.py ├── networks ├── __init__.py ├── openclipnet.py └── resnet_mod.py ├── utils ├── fusion.py └── processing.py └── weights ├── Corvi2023 ├── config.yaml └── weights.pth ├── clipdet_latent10k ├── config.yaml └── weights.pth └── clipdet_latent10k_plus ├── config.yaml └── weights.pth /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/README.md -------------------------------------------------------------------------------- /compute_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/compute_metrics.py -------------------------------------------------------------------------------- /data/commercial_tools.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/data/commercial_tools.csv -------------------------------------------------------------------------------- /data/synthbuster_checksums.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/data/synthbuster_checksums.md5 -------------------------------------------------------------------------------- /data/synthbuster_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/data/synthbuster_download.sh -------------------------------------------------------------------------------- /data/synthwildx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/data/synthwildx/README.md -------------------------------------------------------------------------------- /data/synthwildx/download_synthwildx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/data/synthwildx/download_synthwildx.py -------------------------------------------------------------------------------- /data/synthwildx/list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/data/synthwildx/list.csv -------------------------------------------------------------------------------- /data/test_set/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/data/test_set/README.md -------------------------------------------------------------------------------- /data/train_set/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/data/train_set/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/docs/graph.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/docs/index.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/main.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/networks/__init__.py -------------------------------------------------------------------------------- /networks/openclipnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/networks/openclipnet.py -------------------------------------------------------------------------------- /networks/resnet_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/networks/resnet_mod.py -------------------------------------------------------------------------------- /utils/fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/utils/fusion.py -------------------------------------------------------------------------------- /utils/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/utils/processing.py -------------------------------------------------------------------------------- /weights/Corvi2023/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/weights/Corvi2023/config.yaml -------------------------------------------------------------------------------- /weights/Corvi2023/weights.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/weights/Corvi2023/weights.pth -------------------------------------------------------------------------------- /weights/clipdet_latent10k/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/weights/clipdet_latent10k/config.yaml -------------------------------------------------------------------------------- /weights/clipdet_latent10k/weights.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/weights/clipdet_latent10k/weights.pth -------------------------------------------------------------------------------- /weights/clipdet_latent10k_plus/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/weights/clipdet_latent10k_plus/config.yaml -------------------------------------------------------------------------------- /weights/clipdet_latent10k_plus/weights.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grip-unina/ClipBased-SyntheticImageDetection/HEAD/weights/clipdet_latent10k_plus/weights.pth --------------------------------------------------------------------------------