File size: 1,308 Bytes
8a8f98a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# CleanFD Dataset
Fake image detection dataset for training and evaluation.
## Download & Extract
```bash
# huggingface_hub 설치 (필요시)
pip install huggingface_hub
# 다운로드
huggingface-cli download leekwoon/cleanfd-dataset --repo-type dataset --local-dir ./cleanfd_data
# 무결성 확인 (선택사항)
cd cleanfd_data
md5sum -c checksums.md5
# 파일 합치기 및 압축 해제
cat data.tar.gz.part_* | tar -xzvf -
```
## Directory Structure
```
data/
├── train/
│ ├── real/
│ │ ├── coco/
│ │ └── lsun/
│ └── fake/
│ ├── aligned/
│ ├── ldm/
│ ├── sd21_inpainted_*/
│ └── ...
├── val/
│ ├── real/
│ └── fake/
├── test/
│ ├── real/redcaps/
│ └── fake/ (sd, Midjourney, flux, etc.)
└── test_processed/
├── real/
└── fake/
```
## Train Data Sources
- **real**: COCO, LSUN
- **fake**:
- aligned (Rajan aligned inversions)
- ldm (Latent Diffusion Model)
- sd21_inpainted_* (B-Free inpainting data)
- lsun_inpaint_* (LSUN inpainting)
## Test Data Sources
- **real**: RedCaps
- **fake**: SD, Midjourney, Kandinsky, Playground, PixelArt, LCM, Flux, Wuerstchen, Amused, Chameleon, Loki, WildRF
|