You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

FF++ GretchenDefender Dataset

Private compressed dataset containing FF++ train/val JSONL splits and referenced images.

  • Total JSONL rows: 137,238
  • Unique images: 137,238
  • Missing images at prepare time: 0

Splits

File Rows Labels
train_FF++.jsonl 114,884 Real: 22,993, Fake: 91,891
val_FF++_val.jsonl 22,354 Real: 4,477, Fake: 17,877

Layout

  • compressed/jsonl/*.jsonl.gz - gzipped JSONL splits
  • compressed/images/images_shard_XXXX.tar.gz - image shards
  • compressed/manifest.jsonl.gz - absolute to repo path mapping
  • shards_index.json - shard metadata

Extract

# JSONL
mkdir -p jsonl && gzip -dc compressed/jsonl/train_FF++.jsonl.gz > jsonl/train_FF++.jsonl

# Images
for shard in compressed/images/images_shard_*.tar.gz; do
  tar -xzf "$shard"
done

JSONL format

{
  "messages": [
    {
      "role": "user",
      "content": "<image>Is this image real or fake?"
    },
    {
      "role": "assistant",
      "content": "Real"
    }
  ],
  "images": [
    "images/processed/FF++/original_sequences/youtube/c23/frames/004/000.png"
  ]
}
Downloads last month
3