├── README.assets └── pipeline.png ├── README.md ├── data ├── __init__.py └── datasets.py ├── eval.py ├── models ├── __init__.py ├── select_model.py └── trainer.py ├── networks ├── __init__.py └── network_basic.py ├── options └── default.json ├── requirements.txt ├── train.py └── utils ├── __init__.py ├── utils_earlystop.py ├── utils_logger.py └── utils_tools.py /README.assets/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/README.assets/pipeline.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/data/datasets.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/eval.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/select_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/models/select_model.py -------------------------------------------------------------------------------- /models/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/models/trainer.py -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /networks/network_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/networks/network_basic.py -------------------------------------------------------------------------------- /options/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/options/default.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/utils_earlystop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/utils/utils_earlystop.py -------------------------------------------------------------------------------- /utils/utils_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/utils/utils_logger.py -------------------------------------------------------------------------------- /utils/utils_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zig-HS/FakeImageDetection/HEAD/utils/utils_tools.py --------------------------------------------------------------------------------