├── README.md ├── Readme.txt ├── images ├── abstract.png ├── dataset.png └── teaser.png ├── intra_dataset_code ├── .DS_Store ├── README.md ├── client.py ├── detector.py ├── main.py ├── tsn_predict.py └── xception.py ├── label_construction.txt └── models ├── BMN.py ├── slowfast.py ├── unet_seg.py └── xception.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/README.md -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/Readme.txt -------------------------------------------------------------------------------- /images/abstract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/images/abstract.png -------------------------------------------------------------------------------- /images/dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/images/dataset.png -------------------------------------------------------------------------------- /images/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/images/teaser.png -------------------------------------------------------------------------------- /intra_dataset_code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/intra_dataset_code/.DS_Store -------------------------------------------------------------------------------- /intra_dataset_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/intra_dataset_code/README.md -------------------------------------------------------------------------------- /intra_dataset_code/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/intra_dataset_code/client.py -------------------------------------------------------------------------------- /intra_dataset_code/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/intra_dataset_code/detector.py -------------------------------------------------------------------------------- /intra_dataset_code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/intra_dataset_code/main.py -------------------------------------------------------------------------------- /intra_dataset_code/tsn_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/intra_dataset_code/tsn_predict.py -------------------------------------------------------------------------------- /intra_dataset_code/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/intra_dataset_code/xception.py -------------------------------------------------------------------------------- /label_construction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/label_construction.txt -------------------------------------------------------------------------------- /models/BMN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/models/BMN.py -------------------------------------------------------------------------------- /models/slowfast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/models/slowfast.py -------------------------------------------------------------------------------- /models/unet_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/models/unet_seg.py -------------------------------------------------------------------------------- /models/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinanhe/ForgeryNet/HEAD/models/xception.py --------------------------------------------------------------------------------