File size: 4,187 Bytes
d33eb80 9d9a9c2 4e5e6ed 9d9a9c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | ---
license: cc-by-4.0
language:
- en
- zh
pretty_name: TCO-Dataset
---
# TCO-Dataset: Traditional Chinese Opera Understanding Dataset
## Overview
TCO-Dataset is a comprehensive, bilingual multimodal benchmark designed to evaluate Large Multimodal Models (LMMs) on their understanding of Traditional Chinese Opera. The dataset facilitates fine-grained cultural, visual, and symbolic reasoning across eight major genres, providing a specialized resource for culturally-grounded vision-language research.
## Data Source and Provenance
To ensure data consistency and long-term traceability, all data samples in this dataset are managed and released under the following institutional framework:
- **Institutional Archive:** All images and associated annotations are sourced from the **XJTU Opera Research Database (XJTU-ORD Archive)**.
- **Curation:** This archive is an internal repository maintained by the School of Automation Science and Engineering at Xi'an Jiaotong University. It integrates original field photography captured by the authors' research teams with curated institutional digital assets.
- **Data Integrity:** Every sample in this dataset has undergone a rigorous quality control process to ensure high visual fidelity and the absence of third-party watermarks or branding, making it suitable for high-standard academic evaluation.
## Licensing and Usage
- **License:** The TCO-Dataset is distributed under the **Creative Commons Attribution 4.0 International (CC-BY 4.0)** license.
- **Usage:** This license permits the data to be freely used, shared, and adapted for both **commercial and non-commercial purposes**, provided appropriate credit is given to the original authors and the XJTU-ORD Archive.
- **Attribution:** Users of this dataset should cite the TCO-Dataset and acknowledge the XJTU-ORD Archive when using, redistributing, or adapting the data.
## Dataset Structure
The dataset follows a modular structure where each sample ID (1-1000) corresponds to a set of files:
- **Image (`.png`)**: High-resolution visual data.
- **Question (`.md`)**: Multiple-choice question with four options.
- **Ground Truth (`.txt`)**: Correct answer key.
- **Metadata (`.json`)**: Consolidated metadata file.
### Metadata Example (JSON)
The `.json` file for each sample consolidates the textual content and ground truth for easier programmatic access. Note that provenance and licensing information is declared globally in this README and applies to every sample.
```json
{
"id": "920",
"image": "920.png",
"question_file": "920.md",
"answer_file": "920.txt",
"question_text": "观察这位净角演员的鬓边,插着一朵显眼的黄花。在戏曲中,这种粗犷外表配戴花朵的装扮通常用来表现人物具有什么样的性格特质(如李逵)?",
"options": {
"A": "粗中有细、憨厚可爱或孝顺",
"B": "阴险狡诈、口蜜腹剑",
"C": "温文尔雅、风流倜傥",
"D": "神机妙算、沉稳老练"
},
"answer": "A",
"question_en": "Observe the yellow flower pinned to the side of the Jing actor's head. In opera, what personality trait does this contrast of a rough appearance with a flower typically suggest (often associated with characters like Li Kui)?",
"options_en": {
"A": "Rough but gentle, naive, cute, or filial",
"B": "Treacherous and hypocritical",
"C": "Gentle and romantic",
"D": "Wise and calculating"
}
}
```
## Opera Genres
- Peking Opera (Jingju)
- Yue Opera (Yueju)
- Huangmei Opera (Huangmeixi)
- Cantonese Opera (Yueju)
- Sichuan Opera (Chuanju)
- Qinqiang Opera (Qinqiang)
- Yu Opera (Yuju)
- Kunqu Opera (Kunqu)
## Dataset Statistics
- **Total Samples:** 1000
- **Language:** Bilingual (approx. 66% English, 33% Chinese).
- **Encoding:** All text-based files (`.md`, `.json`, `.txt`) are encoded in **UTF-8**.
## Quality Control
- **Expert Annotation:** Questions and answers were authored and cross-verified by Chinese opera domain experts.
- **Consistency Checks:** Three rounds of internal audits were conducted to ensure the accuracy of labels and the cultural fidelity of the reasoning tasks. |