├── LICENSE ├── README.md ├── attack.py ├── attacker ├── FGSM.py ├── PGD.py ├── __init__.py └── base.py ├── imgs ├── atk.jpg └── clean.jpg ├── requirements.txt └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/anime-ai-detect-fucker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/anime-ai-detect-fucker/HEAD/README.md -------------------------------------------------------------------------------- /attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/anime-ai-detect-fucker/HEAD/attack.py -------------------------------------------------------------------------------- /attacker/FGSM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/anime-ai-detect-fucker/HEAD/attacker/FGSM.py -------------------------------------------------------------------------------- /attacker/PGD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/anime-ai-detect-fucker/HEAD/attacker/PGD.py -------------------------------------------------------------------------------- /attacker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/anime-ai-detect-fucker/HEAD/attacker/__init__.py -------------------------------------------------------------------------------- /attacker/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/anime-ai-detect-fucker/HEAD/attacker/base.py -------------------------------------------------------------------------------- /imgs/atk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/anime-ai-detect-fucker/HEAD/imgs/atk.jpg -------------------------------------------------------------------------------- /imgs/clean.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/anime-ai-detect-fucker/HEAD/imgs/clean.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/anime-ai-detect-fucker/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IrisRainbowNeko/anime-ai-detect-fucker/HEAD/setup.py --------------------------------------------------------------------------------