Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 82, in _split_generators
raise ValueError(
ValueError: The TAR archives of the dataset should be in WebDataset format, but the files in the archive don't share the same prefix or the same types.
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 65, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
YAML Metadata Warning: empty or missing yaml metadata in repo card
Check out the documentation for more information.
CleanFD Backup
CleanFD is a comprehensive modularized library for benchmarking AI-generated image detection methods. This backup includes the complete project with all detectors, datasets, pretrained models, and evaluation scripts.
Download & Extract
# huggingface_hub 설치 (필요시)
pip install huggingface_hub
# 다운로드
huggingface-cli download leekwoon/260204_cfd_backup --repo-type dataset --local-dir ./cfd_backup
# 무결성 확인 (선택사항)
cd cleanfd_backup
md5sum -c checksums.md5
# 파일 합치기 및 압축 해제
cat data.tar.gz.part_* | tar -xzvf -
Directory Structure
cleanfd/
├── cleanfd/ # Core library modules
│ ├── detector/ # Detector implementations (23 detectors)
│ ├── dataset/ # Dataset utilities
│ ├── nn_classifier/ # Neural network modules
│ └── utils/ # Utilities
├── configs/ # Hydra configuration files (23 configs)
├── data/ # Dataset directory
│ ├── train/ # Training data (real + fake)
│ ├── val/ # Validation data
│ ├── test/ # Test data
│ └── test_processed/ # Processed test data (JPEG, WebP, resize)
├── pretrained/ # Pretrained model weights
├── pipelines/ # Training/evaluation pipelines
├── FerretNet/ # FerretNet implementation
├── icml26_paper/ # ICML 2026 paper materials
├── notebooks/ # Jupyter notebooks
├── results/ # Experiment results
├── scripts/ # Utility scripts
└── requirements.txt # Python dependencies
Supported Detectors (23 methods)
Frequency/Reconstruction-based
- DRCT: Dual-Residual ConvNeXt Transformer
- RINE: Reconstruction-based detection
- SAFE: Spectral Analysis for Fake Evidence
- Aeroblade: Aerospace-inspired detector
Gradient-based
- Corvi / Corvi+ / Corvi Mask Gated / Corvi Inpaint
- Rajan / Rajan+ / Rajan Mask Gated / Rajan Inpaint
CLIP-based
- AIDE: CLIP-based detector
- C2P-CLIP: Contrastive-to-Positive CLIP
- CLIPDet: CLIP-based detection
- UFD: Universal Fake Detector
Novel Methods
- FerretNet: Feature-extraction based detector
- CoDE: Code-based detector
- LaDeDa: Latent-based detector
- BFree: Boundary-free detector
- DDA: Domain Discriminative Attention
- NPR: Neural Pattern Recognition
- WarpAD: Warping-based Anomaly Detection
Dataset Information
Training Data
- Real Images: COCO, LSUN
- Fake Images:
- Aligned inversions (Rajan method)
- Latent Diffusion Model (LDM) generations
- Stable Diffusion v2.1 inpainted images
- LSUN inpainted images
Test Data
- Real Images: RedCaps dataset
- Fake Images (12 generators):
- Stable Diffusion (SD)
- Midjourney
- Kandinsky
- Playground
- PixelArt
- LCM
- Flux
- Wuerstchen
- Amused
- Chameleon
- Loki
- WildRF
Data Processing
- test: Original test images
- test_processed: Images with perturbations (JPEG, WebP, resize)
Key Features
- Unified Interface: Consistent API for all detectors
- Hydra Configuration: Flexible experiment management
- Comprehensive Evaluation: Multiple metrics (AP, ACC)
- Perturbation Testing: Robustness evaluation with various image processing
- Modular Design: Easy to add new detectors and datasets
- Reproducible: Configuration-based experiments
Usage Example
# Train a detector
python pipelines/corvi.py
# Evaluate on test set
python scripts/eval.py --method corvi --test_dir test
# Analyze results
python scripts/analyze_results.py --methods corvi rajan --test_dirs test test_processed
Citation
This library aggregates multiple AI-generated image detection methods for research purposes. Please cite the original papers when using specific detectors.
- Downloads last month
- 9