CHIME: CHinese Internet Meme Explanation Dataset

November 3, 2025 · View on GitHub

Paper Paper Dataset License

Are Large Language Models Chronically Online Surfers? A Dataset for Chinese Internet Meme Explanation

Yubo Xie¹, Chenkai Wang², Zongyang Ma³, Fahui Miao¹

¹Shanghai Maritime University, ²École Polytechnique Fédérale de Lausanne, ³Xi'an Jiaotong Liverpool University

📖 Overview

CHIME is a comprehensive dataset for evaluating Large Language Models' understanding of Chinese Internet memes. The dataset contains 1,458 popular phrase-based memes from the Chinese Internet, each annotated with detailed metadata including meaning, origin, example sentences, and meme types.

🎯 Key Features

  • Comprehensive Coverage: 1,458 Chinese Internet memes across 6 different types
  • Rich Annotations: Meaning, origin, example sentences, profanity/offense labels
  • Evaluation Framework: Two tasks for assessing LLM meme comprehension
  • Cultural Depth: Covers linguistically and culturally nuanced content

📊 Dataset Statistics

Meme TypeCountPercentage
Experience (现象)56138.5%
Quotation (引用)43830.0%
Stylistic Device (修辞)21414.7%
Homophonic Pun (谐音)1339.1%
Slang (俗语)604.1%
Abbreviation (缩写)523.6%
  • Profanity: 75 memes (5.1%)
  • Offensive Content: 127 memes (8.7%)
  • Memes with Origins: 525 memes (36.0%)

🏗️ Dataset Structure

Each meme entry contains:

{
  "meme": "网络梗词",
  "meaning": "梗词的含义和解释",
  "origin": "梗词的来源和背景(可能为null)",
  "examples": [
    "使用示例1",
    "使用示例2",
    "使用示例3"
  ],
  "profanity": false,
  "offense": false,
  "type_cn": "中文分类",
  "type_en": "English Category"
}

Field Descriptions:

  • meme (string): The Internet meme term
  • meaning (string): Detailed explanation of the meme's meaning and usage
  • origin (string|null): Background information about the meme's origin
  • examples (array): List of real usage examples in context
  • profanity (boolean): Whether the meme contains profanity
  • offense (boolean): Whether the meme is potentially offensive
  • type_cn (string): Meme category in Chinese
  • type_en (string): Meme category in English

🔬 Evaluation Tasks

Task 1: Meme Explanation

  • Objective: Generate meaning, origin, and example sentences for given memes
  • Evaluation: Automatic metrics (cosine similarity, BERTScore, BARTScore) + Human evaluation
  • Findings: Models struggle with culturally nuanced memes (quotation, homophonic pun)

Task 2: Multiple Choice Questions (MCQ)

  • Objective: Select the most appropriate meme to fill blanks in contextual sentences
  • Dataset: 1,268 MCQs with 5 options each
  • Findings: Human performance (88.6%) outperforms best LLM (80.9%)

📈 Benchmark Results

Explanation Task (Human Evaluation - % Agree)

ModelMeaningOriginExample
DeepSeek-V373.635.477.4
GLM-4-Plus68.535.970.7
GPT-4o53.918.555.0
Claude 3.5 Sonnet51.014.451.7
Qwen2.5-72B45.714.446.8
GLM-4-9B40.47.741.1
Qwen2.5-7B33.99.734.0

MCQ Task (Accuracy)

ModelAverageExperienceQuotationStylistic DeviceHomophonic PunSlangAbbreviation
DeepSeek-V380.983.179.182.871.385.883.3
GLM-4-Plus76.478.474.881.764.080.479.2
GPT-4o73.477.970.876.154.985.875.0
Claude 3.5 Sonnet71.875.864.477.859.780.072.9
Qwen2.5-72B69.073.369.169.148.686.967.1
GLM-4-9B52.657.452.753.636.065.450.4
Qwen2.5-7B51.660.252.052.429.464.251.2

📁 Repository Structure

chime/
├── data/
│   ├── chime_full.json          # Complete dataset
│   └── chime_mcq.json           # MCQ test set
├── LICENSE
└── README.md

🎯 Key Findings

  1. Performance Varies by Meme Type: Models perform better on experience and slang memes, struggle with quotation and homophonic pun memes
  2. Origin Attribution Challenges: All models consistently struggle to provide accurate meme origins
  3. Cultural Context Matters: Culturally and linguistically nuanced memes pose significant challenges
  4. Receptive vs. Productive Understanding: Models find it easier to recognize appropriate usage than to generate explanations

📝 Citation

If you use the CHIME dataset in your research, please cite our paper:

@inproceedings{xie-etal-2025-large,
    title = "Are Large Language Models Chronically Online Surfers? A Dataset for {C}hinese {I}nternet Meme Explanation",
    author = "Xie, Yubo  and
      Wang, Chenkai  and
      Ma, Zongyang  and
      Miao, Fahui",
    booktitle = "Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing",
    month = nov,
    year = "2025",
    address = "Suzhou, China",
    publisher = "Association for Computational Linguistics",
    url = "https://aclanthology.org/2025.emnlp-main.863/",
    pages = "17073--17094"
}

⚖️ Ethical Considerations

  • The dataset contains some potentially offensive or inappropriate content, clearly labeled for research purposes
  • All personally identifiable information has been anonymized
  • We encourage responsible use of this dataset for advancing cultural understanding in AI systems

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

📧 Contact

🙏 Acknowledgments

  • Thanks to Geng Baike (梗百科) for providing the source material
  • Thanks to all annotators who contributed to the dataset creation
  • Special thanks to the research community for valuable feedback

Note: This dataset is intended for research purposes only. Please use responsibly and consider the ethical implications of your research.