CoolFace
Datasetpublic

sci-m-wang/C4-Eval

C4-Eval C4-Eval is the evaluation set for C4 Bench, a Chengyu-based benchmark for measuring whether multimodal language models can understand cross-concept creativity. The release contains the original images, the corresponding idiom answers, and the complete task-specific questions used for evaluation. 221 base items: 37 human-designed seed figures and 184 bridge-controlled synthetic figures. 1,105 evaluation instances: five task formulations for every base item. Language:… See the full description on the dataset page: https://huggingface.co/datasets/sci-m-wang/C4-Eval.

sourceHugging Faceupdated 1mo agoView on Hugging Face
0likes693downloads
Dataset Card

C4-Eval

C4-Eval is the evaluation set for C4 Bench, a Chengyu-based benchmark for measuring whether multimodal language models can understand cross-concept creativity. The release contains the original images, the corresponding idiom answers, and the complete task-specific questions used for evaluation.

  • 221 base items: 37 human-designed seed figures and 184 bridge-controlled synthetic figures.
  • 1,105 evaluation instances: five task formulations for every base item.
  • Language: Chinese.
  • Code and evaluation tools: github.com/sci-m-wang/C4

Tasks

TaskEvaluation formExpected response
H0Image-only idiom identificationOne Chinese idiom
H1Idiom identification with a generic cross-concept hintOne Chinese idiom
H4Candidate-constrained idiom identificationOne idiom from four candidates
E0Free idiom identification and bridge explanationStructured JSON
E1Bridge explanation with the gold idiom providedStructured JSON

The primary leaderboard score uses exact answer recovery over H0, H1, H4, and E0, for a total of 884 instances. E1 is retained for explanation analysis and is excluded from the primary score.

Load the evaluation set

python
from datasets import load_dataset

dataset = load_dataset("sci-m-wang/C4-Eval", split="test")
example = dataset[0]

print(example["question"])
print(example["answer"])
print(example["image"])

The image column contains a resolvable Hub URL. image_path gives the corresponding repository-relative path, which is useful when the dataset has been downloaded locally.

Evaluation fields

FieldDescription
instance_idUnique task-level identifier
item_idIdentifier shared by the five formulations of one image
originHuman seed figure or synthetic bridge-controlled figure
imageURL of the original image on the Hub
image_pathRepository-relative image path
taskOne of H0, H1, H4, E0, or E1
task_nameDescriptive task name
questionComplete model-facing prompt for this task instance
answerGold Chinese idiom
answer_aliasesAccepted answer aliases, when applicable
candidatesFour candidate idioms for H4; empty otherwise
levelBridge-construction level for synthetic items
level_modeBridge configuration for synthetic items
explanation_referenceJSON-encoded reference bridge annotation

data/items.jsonl additionally provides one row per base item. data/task_templates.json records the five task definitions. The metadata/ directory contains the construction annotations, reviewed bridge networks, and manual scene specifications used to produce the release.

Repository layout

text
data/eval.jsonl                 # 1,105 model-facing task instances
data/items.jsonl                # 221 base items
data/task_templates.json        # task definitions
images/human/                   # 37 human-designed seed figures
images/synthetic/               # 184 bridge-controlled figures
metadata/                       # construction and provenance metadata
export_report.json              # release counts and schema version

Reproducibility

The public code repository can rebuild the task views, validate image coverage, score normalized exact answers, and export this Hugging Face layout. The published images retain the original files used by the benchmark.

Citation

If you use C4 Bench in your research, please cite the arXiv preprint:

bibtex
@misc{wang2026mllmsdecodecreativeleap,
      title={Can MLLMs Decode the Creative Leap? Introducing C4 for Cross-Concept Understanding},
      author={Ming Wang and Yuqing Zhang and Tingna Xie and Xiangju Li and Xiaocui Yang and Daling Wang and Shi Feng and Yifei Zhang},
      year={2026},
      eprint={2608.06501},
      archivePrefix={arXiv},
      primaryClass={cs.AI},
      url={https://arxiv.org/abs/2608.06501},
}