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.

Research-Deepfake

This repository accompanies the paper: Fractal Characterization of Low-Correlation Signals in AI-Generated Image Detection

Source code : https://github.com/jim-xie-cn/Research-Deepfake

⚙️ Download source code

git clone https://github.com/jim-xie-cn/Research-Deepfake.git

Source Code Overview

  • face_resize.py — Resize raw images to 256×256 pixels.
  • face_crop.py — Detect and crop face regions from raw images.
  • feature.py — Extract FD, MFS, LAC, entropy, mean, and standard deviation features.
  • analyse.py — Sample feature sets for distribution analysis.

⚙️ Installation

Install required dependencies:

cd install
pip install -r requirements.txt

🔁 Reproduce Paper's Results

All experimental data of this paper is available in https://huggingface.co/datasets/jim-xie-cn/Research-Deepfake. The provided dataset already includes preprocessed images and extracted features used in the paper, enabling direct reproduction without running the full pipeline.

To reproduce the results reported in the paper follow steps:

1. Download the processed dataset

https://huggingface.co/datasets/jim-xie-cn/Research-Deepfake/resolve/main/paper/data.tar.gz?download=true

2. Extract the dataset and replace the data directory:

tar -xzvf data.tar.gz

3. Launch Jupyter Notebook:

cd scripts
jupyter notebook

4. Check result

Open the src/paper.ipynb with jupyter

Work with data of yourself

1. Dataset Preparation

Here is an example, (use 1-million-fake-faces for fake images,flickrfaceshq-dataset-ffhq for real images)

Download the following datasets and unzip them into ./data/raw:

Create the directory structure (if needed):

mkdir -p data/raw/{1-million-fake-faces,flickrfaceshq-dataset-ffhq}

After downloading and unzipping, the folders should look like:

src/
   |-face_resize.py (resize image to the same size) 
   |-face_crop.py (crop faces from images)
   |-feature.py (extract common,MFS and Lacunarity features)
   |-analyse.py (samplling and calculate statistical for common,MFS and Lacunarity features)
   |-main.ipynb (collect all data and demo)
data/
    ├── face
    │   ├── crop (cropped face images, genreated by face_crop.py)
    │   │   ├── fake
    │   │   └── real
    │   ├── features (common,MFS and Lacunarity features, genreated by feature.py)
    │   │   └── train
    |   |       |── common-10000.csv (merged common features for 10000 samples)
    |   |       |── common-50000.csv (merged common features for 50000 samples)
    │   │       ├── fake (MFS and Lacunarity features for fake images)
    │   │       └── real (MFS and Lacunarity features for real images)
    │   ├── resize (resized images, genreated by face_resize.py)
    │   │   └── 256
    │   │       ├── fake
    │   │       └── real
    │   └── status (statistical information, generated by analyse.py)
    │       └── train
    └── raw (raw images from dataset 1-million-fake-faces for fake images , dataset FFHQ for real images)
        └── dataset
            ├── 1-million-fake-faces
            └── flickrfaceshq-dataset-ffhq

2. Run process task

cd ./scripts
sh pipeline.sh

This script runs the full preprocessing and analysis pipeline end-to-end.

3. Check result

cd scripts
jupyter notebook

Open src/main.ipynb with jupyter

📚 Citation

@article{fractal_fake_detection_2026,
  title   = {Fractal Characterization of Low-Correlation Signals in AI-Generated Image Detection},
  author  = {Jim, Xie and others},
  journal = {arXiv preprint arXiv:2604.17268},
  year    = {2026}
}
Downloads last month
190

Paper for jim-xie-cn/Research-Deepfake