CoolFace
Datasetpublic

kellycyy/CulturalBench

CulturalBench - a Robust, Diverse and Challenging Benchmark on Measuring the (Lack of) Cultural Knowledge of LLMs ๐Ÿ“Œ Resources: Paper | Leaderboard ๐Ÿ“˜ Description of CulturalBench CulturalBench is a set of 1,227 human-written and human-verified questions for effectively assessing LLMsโ€™ cultural knowledge, covering 45 global regions including the underrepresented ones like Bangladesh, Zimbabwe, and Peru. We evaluate models on two setups:โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/kellycyy/CulturalBench.

sourceHugging Facecc-by-4.0updated 2y agoView on Hugging Face
16likes1.1kdownloads
Dataset Card

CulturalBench - a Robust, Diverse and Challenging Benchmark on Measuring the (Lack of) Cultural Knowledge of LLMs

๐Ÿ“Œ Resources: Paper | Leaderboard

๐Ÿ“˜ Description of CulturalBench

  • โ€”CulturalBench is a set of 1,227 human-written and human-verified questions for effectively assessing LLMsโ€™ cultural knowledge, covering 45 global regions including the underrepresented ones like Bangladesh, Zimbabwe, and Peru.
  • โ€”We evaluate models on two setups: CulturalBench-Easy and CulturalBench-Hard which share the same questions but asked differently.
  • โ€”CulturalBench-Easy: multiple-choice questions (Output: one out of four options i.e. A,B,C,D). Evaluate model accuracy at question level (i.e. per question_idx). There are 1,227 questions in total.
  • โ€”CulturalBench-Hard: binary (Output: one out of two possibilties i.e. True/False). Evaluate model accuracy at question level (i.e. per question_idx). There are 1,227x4=4908 binary judgements in total with 1,227 questions provided.

๐ŸŒŽ Country distribution

ContinentNum of questionsIncluded Country/Region
North America27Canada; United States
South America150Argentina; Brazil; Chile; Mexico; Peru
East Europe115Czech Republic; Poland; Romania; Ukraine; Russia
South Europe76Spain; Italy
West Europe96France; Germany; Netherlands; United Kingdom
Africa134Egypt; Morocco; Nigeria; South Africa; Zimbabwe
Middle East/West Asia127Iran; Israel; Lebanon; Saudi Arabia; Turkey
South Asia106Bangladesh; India; Nepal; Pakistan
Southeast Asia159Indonesia; Malaysia; Philippines; Singapore; Thailand; Vietnam
East Asia211China; Hong Kong; Japan; South Korea; Taiwan
Oceania26Australia; New Zealand

๐Ÿฅ‡ Leaderboard of CulturalBench

  • โ€”We evaluated 30 frontier LLMs (update: 2024-10-04 13:20:58) and hosted the leaderboard at https://huggingface.co/spaces/kellycyy/CulturalBench.
  • โ€”We find that LLMs are sensitive to such difference in setups (e.g., GPT-4o with 27.3% difference).
  • โ€”Compared to human performance (92.6% accuracy), CULTURALBENCH-Hard is more challenging for frontier LLMs with the best performing model (GPT-4o) at only 61.5% and the worst (Llama3-8b) at 21.4%.

๐Ÿ“– Example of CulturalBench

  • โ€”Examples of questions in two setups: image/png

๐Ÿ’ป How to load the datasets

from datasets import load_dataset

ds_hard = load_dataset("kellycyy/CulturalBench", "CulturalBench-Hard")
ds_easy = load_dataset("kellycyy/CulturalBench", "CulturalBench-Easy")

Contact

E-Mail: Kelly Chiu

Citation

If you find this dataset useful, please cite the following works

bibtex
@misc{chiu2024culturalbenchrobustdiversechallenging,
      title={CulturalBench: a Robust, Diverse and Challenging Benchmark on Measuring the (Lack of) Cultural Knowledge of LLMs}, 
      author={Yu Ying Chiu and Liwei Jiang and Bill Yuchen Lin and Chan Young Park and Shuyue Stella Li and Sahithya Ravi and Mehar Bhatia and Maria Antoniak and Yulia Tsvetkov and Vered Shwartz and Yejin Choi},
      year={2024},
      eprint={2410.02677},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2410.02677}, 
}