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 289, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                                         ^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/folder_based_builder/folder_based_builder.py", line 237, in _split_generators
                  raise ValueError(
              ValueError: `file_name` or `*_file_name` must be present as dictionary key (with type string) in metadata files
              
              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 343, in get_dataset_split_names
                  info = get_dataset_config_info(
                         ^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/inspect.py", line 294, 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.

HinglishMemeX

A Code-Mixed Multimodal Dataset for Misinformation and Satire Detection in Indian Memes


Overview

HinglishMemeX is a curated multimodal dataset consisting of 1,370 Indian social-media memes that combine images + Hinglish (Hindi+English code-mixed) text. Each meme is paired with:

  • OCR‑extracted Hinglish text
  • A distilled English factual claim
  • A supporting evidence URL (from a trusted fact-checking source)
  • A veracity label: real, fake, satire, or partially_true

This dataset is designed for misinformation detection, satire identification, multimodal classification, and retrieval‑augmented fact verification.


Dataset Structure

HinglishMemeX/
  ├── images/
  │     ├── 000001.jpg
  │     ├── 000002.jpg
  │     └── ...
  ├── metadata.csv
  ├── README.md

Each metadata entry contains:

  • id: unique ID for the meme
  • image: path or URL to the meme image
  • ocr_text_hinglish: OCR text extracted from the meme (Hinglish)
  • claim_en: distilled factual English claim
  • evidence_url: link to fact-checking source
  • label: one of real, fake, satire, partially_true
  • source: origin (AltNews, Factly, BOOMLive, satire pages, etc.)
  • split: train / validation / test

Tasks Supported

  • Multimodal misinformation detection (4-way classification)
  • Satire detection
  • Claim verification via external evidence
  • OCR-based text understanding in code-mixed Hinglish
  • Retrieval-Augmented Generation (RAG) over evidence URLs

Dataset Statistics

  • Total memes: 1,370
  • Classes: Real, Fake, Satire, Partially True
  • Splits:
    • Train: ~70%
    • Validation: ~10%
    • Test: ~20%

Data Collection & Curation

  • Images collected from public fact-checking portals (AltNews, BOOMLive, Factly) and popular social media satire pages.
  • Hinglish text was extracted using EasyOCR and Google Vision API, followed by light manual correction.
  • Claims were distilled into short English factual statements.
  • Evidence URLs were added for transparency and retrieval.
  • Double annotator labeling with adjudication for disagreements.

Benchmarks & Baselines

Baseline experiments were conducted using:

  • CLIP ViT-L/14 (vision-only)
  • CLIP + IndicBERT (late fusion)
  • Cross-attention dual encoders (deep fusion)

Evaluation metrics: macro-F1, accuracy, per-class F1.

Satire and partially-true memes are particularly challenging due to semantic overlap.


Ethical Considerations

  • Contains politically sensitive content; models trained on this dataset may inherit biases.
  • Some memes may include misinformation or sensitive themes—handle responsibly.
  • Recommended to use the dataset for research only.
  • Provide confidence scores and retrieved evidence when deploying models.

⚠️ Limitations

  • Focused on Indian context → may not generalize globally.
  • Natural OCR errors remain in some samples.
  • Subjective boundaries between satire and partially-true content.

Loading the Dataset (Hugging Face)

from datasets import load_dataset

dataset = load_dataset("pushkarsharma/HinglishMemeX")

def add_path(example):
    example["image"] = f"images/{example['id']}.jpg"
    return example

dataset = dataset.map(add_path)

License

Please refer to the LICENSE file for dataset licensing details. Choose a license such as CC BY 4.0 or CC BY-SA 4.0 depending on your redistribution permissions.


Citation

If you use HinglishMemeX, please cite:

@misc{hinglishmemex2025,
  title = {HinglishMemeX: A Code-Mixed Multimodal Dataset for Misinformation and Satire Detection in Indian Memes},
  author = {Sharma, Pushkar},
  year = {2025},
  institution = {Indian Institute of Technology Patna}
}

Contact

Maintainer: Pushkar Sharma
Email: pushkarrokhel@gmail.com


Thank you for using HinglishMemeX!


license: apache-2.0

Downloads last month
6