ForgeryVCR / README.md
youqiwong's picture
Update dataset card for SFT and RL directory structure
386bfe9 verified
|
Raw
History Blame Contribute Delete
1.58 kB
---
pretty_name: ForgeryVCR Data
tags:
- image-forensics
- image-manipulation-detection
- multimodal
---
# ForgeryVCR Data
This repository stores the preprocessed 832-size assets used by the public
ForgeryVCR training and evaluation workflow.
```text
datasets/
├── train/
│ ├── sft/ # CASIA v2 archives for expert selection and Agent SFT
│ └── rl/ # IMD2020 and FantasticReality archives for GRPO
└── test/ # public evaluation benchmark archives
```
Tampered-set JSON files use paths relative to their own dataset directory, for
example `./forged/example.png` and `./gt/example_gt.png`.
## Download
Download all archives:
```bash
hf download ForgeryVCR-Team/ForgeryVCR \
--repo-type dataset \
--include "datasets/train/sft/*.zip" "datasets/train/rl/*.zip" "datasets/test/*.zip" \
--local-dir downloads/forgeryvcr
```
Download only the SFT datasets:
```bash
hf download ForgeryVCR-Team/ForgeryVCR \
--repo-type dataset \
--include "datasets/train/sft/*.zip" \
--local-dir downloads/forgeryvcr
```
Download only the RL datasets:
```bash
hf download ForgeryVCR-Team/ForgeryVCR \
--repo-type dataset \
--include "datasets/train/rl/*.zip" \
--local-dir downloads/forgeryvcr
```
Download only the evaluation datasets:
```bash
hf download ForgeryVCR-Team/ForgeryVCR \
--repo-type dataset \
--include "datasets/test/*.zip" \
--local-dir downloads/forgeryvcr
```
Extraction commands and the complete directory contract are documented in the
[ForgeryVCR repository](https://github.com/youqiwong/ForgeryVCR).