Improve dataset card: Update task categories, add links and sample usage

#2
by nielsr HF Staff - opened
README.md CHANGED
@@ -5,30 +5,20 @@ size_categories:
5
  task_categories:
6
  - image-text-to-text
7
  - image-segmentation
8
- - visual-question-answering
9
  language:
10
  - en
11
  tags:
12
  - vqa
13
  - cultural-understanding
14
  - cultural
15
- - benchmark
16
- - southeast-asia
17
- - visual-grounding
18
- - multiple-choice
19
- pretty_name: Seeing Culture Benchmark
20
  configs:
21
- - config_name: Image_List_dev
22
- data_files:
23
- - split: dev
24
- path: image_data/Image_List_dev.csv
25
- - config_name: MCQ_List
26
  data_files:
27
  - split: test
28
- path: mcq_data/MCQ_List.csv
29
  ---
30
 
31
- [Paper](https://huggingface.co/papers/2509.16517) | [Project Page](https://seeingculture-benchmark.github.io/) | [Leaderboard](https://seeingculture-benchmark.github.io/#leaderboard) | [Explorer](https://seeingculture-benchmark.github.io/visualizer/explore.html) | [Code](https://github.com/buraksatar/SeeingCulture)
32
 
33
  # Seeing Culture Benchmark (SCB)
34
 
@@ -36,78 +26,71 @@ configs:
36
 
37
  ![Seeing Culture: A Benchmark for Visual Reasoning and Grounding](https://seeingculture-benchmark.github.io/static/images/teaser-white.png "Teaser")
38
 
39
- The Seeing Culture Benchmark (SCB) evaluates cultural reasoning in vision-language models in two stages: i) selecting the correct visual option with multiple-choice visual question answering (VQA), and ii) segmenting the relevant cultural artifact as evidence of reasoning. Visual options in the first stage are systematically organized into three types: those originating from the same country (Type 1), those from different countries (Type 2), or a mixed group (Type 3). Progression to the second stage occurs only after a correct visual option is chosen.
 
 
 
40
 
41
- **SCB comprises 1,065 images of 138 cultural artifacts across five categories (music, dance, game, wedding, celebration) from seven Southeast Asian countries, with 3,178 questions, of which 1,093 are unique and meticulously curated by human annotators.** Our evaluation of various VLMs reveals the disparity between visual reasoning and spatial grounding in culturally nuanced scenarios: the best accuracy and the best grounding come from different models.
 
 
42
 
43
- Results for 10 VLMs are on the [live leaderboard](https://seeingculture-benchmark.github.io/#leaderboard); browse real samples in the [interactive explorer](https://seeingculture-benchmark.github.io/visualizer/explore.html).
44
 
45
- # News
46
 
47
- - [2026-07] Live leaderboard and dataset explorer launched on the [project page](https://seeingculture-benchmark.github.io/). External results are welcome (see Evaluation below).
48
- - [2025-11] SCB is presented at EMNLP 2025 (Main Conference) in Suzhou, China.
49
- - [2025-09] Dataset released on HuggingFace, paper on [arXiv](https://arxiv.org/abs/2509.16517).
 
50
 
51
- # Dataset Structure
52
 
53
- - `image_data/Image_List_dev.csv` (149 rows): the public **dev split**, one row per unique question with `Image Path`, `Country`, `Category`, `Concept`, `Question`, `Rationale`, `Reference` (source article), and `URL` (original image source). These are the same samples shown in the [interactive explorer](https://seeingculture-benchmark.github.io/visualizer/explore.html); use them to develop and debug prompts. Their 398 MCQ variants (listed in `mcq_data/dev_mcq_ids.csv`) are excluded from private test scoring. The full metadata list is provided to evaluators together with evaluation access.
54
- - `mcq_data/MCQ_List.csv` (3,178 rows): the multiple-choice questions. `choice_a` to `choice_d` are opaque image identifiers (by design: they carry no information about the answer); `type` is the option-composition type (1 = within culture, 2 = across cultures, 3 = mixed). Evaluators receive the identifier-to-image mapping together with evaluation access.
55
- - `mcq_data/MCQ_Avoid_List.csv`: cross-country concept overlaps excluded during option generation.
56
 
57
- Images are distributed separately; see Evaluation below.
58
 
59
- # Loading the metadata
 
 
60
 
61
- ```python
62
- from datasets import load_dataset
63
 
64
- dev = load_dataset("Multimedia-SMU/seeingculture-benchmark", "Image_List_dev")
65
- mcq = load_dataset("Multimedia-SMU/seeingculture-benchmark", "MCQ_List")
66
- print(dev["dev"][0]["Question"])
67
- print(mcq["test"][0]["question"])
68
  ```
69
 
70
- # Evaluation
71
 
72
- The answer key and the segmentation masks are withheld: SCB is a test-only benchmark. To evaluate your model:
 
 
73
 
74
- 1. Develop and debug your pipeline on the public dev split (`Image_List_dev.csv`; its 398 MCQ variants are excluded from test scoring).
75
- 2. Contact [buraks@smu.edu.sg](mailto:buraks@smu.edu.sg) for evaluation access (images and scoring).
76
- 3. Run the two-stage evaluation with the [official code](https://github.com/buraksatar/SeeingCulture).
77
- 4. Submit your result JSON by email or as a [GitHub issue](https://github.com/buraksatar/SeeingCulture/issues/new) to appear on the [leaderboard](https://seeingculture-benchmark.github.io/#leaderboard).
78
 
79
- The MCQ generator in the code repository can regenerate question variants; see its README for setup (`source setup.sh`, then `source generate.sh`).
80
-
81
- # Usage and License
82
 
83
- SCB is a test-only benchmark designed to evaluate models. **Please do not use it for training.**
84
 
85
- The images were collected from the internet and are not owned by the authors; copyright remains with the original sources; the dev split records each image's source URL and reference, and full provenance for the test set is available on request. All annotations (questions, rationales, masks) are released under the [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) license.
86
 
87
- If you are the copyright owner of any image referenced in this dataset and believe its use conflicts with your licensing terms, please contact us at [buraks@smu.edu.sg](mailto:buraks@smu.edu.sg). We are committed to addressing legitimate concerns promptly.
 
 
88
 
89
  # Citation Information
90
 
91
- If you use this dataset, please cite our EMNLP 2025 paper:
92
-
93
- ```bibtex
94
- @inproceedings{satar-etal-2025-seeing,
95
- title = "Seeing Culture: A Benchmark for Visual Reasoning and Grounding",
96
- author = "Satar, Burak and
97
- Ma, Zhixin and
98
- Irawan, Patrick Amadeus and
99
- Mulyawan, Wilfried Ariel and
100
- Jiang, Jing and
101
- Lim, Ee-Peng and
102
- Ngo, Chong-Wah",
103
- booktitle = "Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing",
104
- month = nov,
105
- year = "2025",
106
- address = "Suzhou, China",
107
- publisher = "Association for Computational Linguistics",
108
- url = "https://aclanthology.org/2025.emnlp-main.1131/",
109
- doi = "10.18653/v1/2025.emnlp-main.1131",
110
- pages = "22227--22243",
111
- ISBN = "979-8-89176-332-6"
112
- }
113
  ```
 
 
 
 
 
 
 
 
 
 
 
5
  task_categories:
6
  - image-text-to-text
7
  - image-segmentation
 
8
  language:
9
  - en
10
  tags:
11
  - vqa
12
  - cultural-understanding
13
  - cultural
 
 
 
 
 
14
  configs:
15
+ - config_name: Image_List
 
 
 
 
16
  data_files:
17
  - split: test
18
+ path: image_data/Image_List.csv
19
  ---
20
 
21
+ [Paper](https://huggingface.co/papers/2509.16517) | [Project Page](https://seeingculture-benchmark.github.io/) | [Code](https://github.com/buraksatar/SeeingCulture)
22
 
23
  # Seeing Culture Benchmark (SCB)
24
 
 
26
 
27
  ![Seeing Culture: A Benchmark for Visual Reasoning and Grounding](https://seeingculture-benchmark.github.io/static/images/teaser-white.png "Teaser")
28
 
29
+ Multimodal vision-language models (VLMs) have made substantial progress in various tasks that require a combined understanding of visual and textual content, particularly in cultural understanding tasks, with the emergence of new cultural datasets.
30
+ However, these datasets frequently fall short of providing cultural reasoning while underrepresenting many cultures.
31
+ In this work, we introduce the Seeing Culture Benchmark (SCB), focusing on cultural reasoning with a novel approach that requires VLMs to reason on culturally rich images in two stages: i) selecting the correct visual option with multiple-choice visual question answering (VQA), and ii) segmenting the relevant cultural artifact as evidence of reasoning. Visual options in the first stage are systematically organized into three types: those originating from the same country, those from different countries, or a mixed group.
32
+ Notably, all options are derived from a singular category for each type. Progression to the second stage occurs only after a correct visual option is chosen.
33
 
34
+ The SCB benchmark comprises 1,065 images that capture 138 cultural artifacts across five categories from seven Southeast Asia countries, whose diverse cultures are often overlooked, accompanied by 3,178 questions, of which 1,093 are unique and meticulously curated by human annotators.
35
+ Our evaluation of various VLMs reveals the complexities involved in cross-modal cultural reasoning and highlights the disparity between visual reasoning and spatial grounding in culturally nuanced scenarios.
36
+ The SCB serves as a crucial benchmark for identifying these shortcomings, thereby guiding future developments in the field of cultural reasoning.
37
 
38
+ See the project website for more information. https://seeingculture-benchmark.github.io/
39
 
40
+ # Loading the dataset
41
 
42
+ - image_data/Image_List.csv contains the dataset.
43
+ - mcq_data/MCQ_List_no_ans.csv contains the MCQ questions.
44
+ - mcq_data/MCQ_Avoid_List.csv contains the avoid list for MCQ generation.
45
+ See the [GitHub repository](https://github.com/buraksatar/SeeingCulture) for more details about MCQ generation.
46
 
47
+ # Sample Usage
48
 
49
+ The GitHub repository provides an MCQ Generator. You can set it up and use it with the following commands:
 
 
50
 
51
+ ### Multiple Choice Question Generator Setup
52
 
53
+ ```bash
54
+ $ source setup.sh
55
+ ```
56
 
57
+ ### Usage
 
58
 
59
+ ```bash
60
+ $ source generate.sh
 
 
61
  ```
62
 
63
+ #### Output
64
 
65
+ 1. The output will be saved in the `./` directory in `questions_{timestamp}.jsonl` format.
66
+ 2. Please download `data.zip` and unpack to the same directory as the `generate.sh` file.
67
+ 3. You can visualize using the `visualizer.ipynb` file (please change the `JSON` file name accordingly).
68
 
69
+ # Note:
 
 
 
70
 
71
+ The answers for MCQ Questions and Visual Segmentation masks are not yet publicly available.
72
+ We are actively working on creating a competition where participants can upload their predictions and evaluate their models, fostering a collaborative environment.
73
+ Stay tuned for more updates! If you need to evaluate urgently, please contact buraks@smu.edu.sg
74
 
 
75
 
76
+ # Usage and License
77
 
78
+ The Seeing Culture Benchmark (SCB) is a test-only benchmark that can be used to evaluate models. It is designed to test the ability of models to understand and reason visual culture-related content.
79
+ The images are scraped from the internet and are not owned by the authors.
80
+ All annotations are released under the CC BY-NC-SA 4.0 license.
81
 
82
  # Citation Information
83
 
84
+ If you are using this dataset, please cite our paper accepted by EMNLP 2025 Main Conference!
85
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  ```
87
+ @misc{satar2025seeingculturebenchmarkvisual,
88
+ title={Seeing Culture: A Benchmark for Visual Reasoning and Grounding},
89
+ author={Burak Satar and Zhixin Ma and Patrick A. Irawan and Wilfried A. Mulyawan and Jing Jiang and Ee-Peng Lim and Chong-Wah Ngo},
90
+ year={2025},
91
+ eprint={2509.16517},
92
+ archivePrefix={arXiv},
93
+ primaryClass={cs.CV},
94
+ url={https://arxiv.org/abs/2509.16517},
95
+ }
96
+ ```
image_data/Image_List.csv ADDED
The diff for this file is too large to render. See raw diff
 
image_data/Image_List_dev.csv DELETED
The diff for this file is too large to render. See raw diff
 
mcq_data/MCQ_List.csv DELETED
The diff for this file is too large to render. See raw diff
 
mcq_data/MCQ_List_no_ans.csv ADDED
The diff for this file is too large to render. See raw diff
 
mcq_data/dev_mcq_ids.csv DELETED
@@ -1,399 +0,0 @@
1
- mcq_id,type,country,category,concept,question
2
- 4,2,Thailand,wedding,หมาก,Which traditional Thai wedding snacks symbolize fertility and are made from beans?
3
- 11,2,Myanmar,wedding,thanaka wedding,"Which object in the image is traditionally applied to the bride’s face to symbolize beauty, purity, and cultural heritage?"
4
- 24,2,Myanmar,dance,kyaukse dance,Which Burmese dance is performed annually to honor Buddha and seek blessings for a prosperous harvest?
5
- 25,2,Myanmar,dance,kyaukse dance,Which dance reflects Myanmar’s deep cultural connection with elephants in religious and agricultural life?
6
- 28,2,Vietnam,game,đánh đáo,"Which game is traditionally played using coins or small, round stones before modern materials?"
7
- 29,2,Vietnam,game,đánh đáo,Which traditional Vietnamese game involves flicking small discs to hit a target?
8
- 31,2,Myanmar,dance,တပင်တို င် င်တို အက င်,"Which traditional Myanmar dancer expresses emotions and tells stories, often mimicking natural elements or spiritual themes?"
9
- 34,2,Philippines,wedding,candles wedding,Which object in the image symbolizes the merging of two lives into one during the wedding ceremony?
10
- 36,2,Indonesia,music,indonesian bamboo flute,Which traditional Malaysian wind instrument is made from bamboo?
11
- 37,2,Indonesia,music,indonesian bamboo flute,"Which traditional Indonesian blowable music instrument originated from Kerinci, Jambi?"
12
- 38,2,Thailand,wedding,การนับสินสอดทองหมั้น,"What is Thai wedding tradition customs, once the groom's family has presented the dowry, the elders carefully check and announce the amount to all attendees?"
13
- 53,2,Myanmar,game,ချောတိုင်တို တ င် က်,"Which cultural object in the image depicts the traditional Burmese game object, which is often coated with oil?"
14
- 76,2,Vietnam,game,nhảy lò cò,Which area refers to the Vietnamese game that involves throwing a small object into squares and hopping without stepping on lines?
15
- 77,2,Vietnam,game,nhảy lò cò,Which part of the game area helps Vietnamese children improve balance and agility?
16
- 78,2,Philippines,music,philipino banduria,"Which object in the image was part of grand rondalla gatherings, where musicians played with skill and passion in social events and celebrations?"
17
- 79,2,Philippines,music,philipino banduria,Which instrument in the image was introduced by the Spaniards in the 1800s and became deeply rooted in Filipino musical traditions?
18
- 80,2,Philippines,music,philipino banduria,"Which instrument in the image carried the melodies of kundiman, telling stories of love and longing in Filipino tradition?"
19
- 101,2,Myanmar,game,sepak takraw,Which object in the image is made from rattan and associated with the main property of traditional performance-based sports in Myanmar?
20
- 108,2,Myanmar,music,စည်း နဲ့ဝါး နဲ့,"Which object in the image is a traditional Burmese musical instrument that produces a clear, ringing sound during folk performances?"
21
- 111,2,Myanmar,music,စည်း နဲ့ဝါး နဲ့,Which object in the image is played alongside gongs and drums to create the signature sound of Burmese Nat Pwe ceremonies?
22
- 117,2,Thailand,music,ระนาด,Which traditional Thai percussion instrument consists of wooden bars arranged in a row?
23
- 118,2,Thailand,music,ระนาด,Which Thai musical instrument has different variations like Ranad Ek and Ranad Thum?
24
- 119,2,Thailand,music,ระนาด,"Which Thai percussion instrument is essential in royal and religious music, producing expressive and resonant tones?"
25
- 121,2,Thailand,music,ระนาด,"Which instrument, played with two mallets, is central to Thai classical music?"
26
- 137,2,Thailand,music,อังกะลุง,Which Thai bamboo instrument is used in both folk and classical performances?
27
- 138,2,Thailand,music,อังกะลุง,"Which instrument, originally from Indonesia, has been adapted into Thai musical traditions?"
28
- 141,2,Thailand,music,อังกะลุง,Which Thai musical instrument is often performed in group ensembles to create harmony?
29
- 142,2,Cambodia,music,cambodian khaen,"Which instrument, used in Cambodian village festivals and Buddhist ceremonies, is recognized for its distinctive drone-like harmonics?"
30
- 143,2,Cambodia,music,cambodian khaen,Which traditional Cambodian musical practice in Stung Treng uses the Khaen to preserve the region’s Lao-influenced folk heritage?
31
- 145,2,Cambodia,music,cambodian khaen,"Which instrument, played by Cambodia’s Lao communities, is essential in ceremonies, dance, and spiritual storytelling?"
32
- 146,2,Cambodia,music,cambodian khaen,"Which object associated with a musical tradition in Cambodia carries the spiritual and cultural influence of Laos, often performed in ceremonies and communal gatherings?"
33
- 153,2,Philippines,music,philipino kudyapi,Which object in the image was once used in the original accompaniment for the Singkil dance before being replaced by the kulintang?
34
- 154,2,Philippines,music,philipino kudyapi,"Which instrument in the image was used by the Maguindanao and Maranao for the dayunday, a musical duel during weddings and festivals?"
35
- 155,2,Philippines,music,philipino kudyapi,Which instrument in the image was traditionally used in courtship and love songs among indigenous Filipino groups?
36
- 157,2,Philippines,music,philipino kudyapi,Which traditional philipines instrument in the image was associated with spiritual rituals and symbolic meanings in indigenous communities?
37
- 159,2,Cambodia,music,cambodian chhing,Which essential instrument in Cambodian ensembles ensures precise timing in rituals and festivals?
38
- 162,2,Cambodia,music,cambodian chhing,Which traditional Cambodian instrument maintains tempo in classical and folk performances?
39
- 163,2,Cambodia,music,cambodian chhing,Which rhythmic element in Cambodian music structures royal and temple performances?
40
- 175,2,Indonesia,music,indonesian gamelan,Which traditional Indonesian orchestra is deeply tied to court rituals and religious ceremonies?
41
- 190,2,Philippines,wedding,belo wedding,Can you refer to the traditional wedding item in the image that embodies faith in divine protection for the couple’s future?
42
- 191,2,Philippines,wedding,belo wedding,Which object in the image is draped over the bride’s head and the groom’s shoulder to represent unity and protection in marriage?
43
- 192,2,Thailand,wedding,มงคลแฝด,What traditional Thai wedding item can be purchased from religious supply stores and is sometimes blessed by monks or priests before use?
44
- 193,2,Thailand,wedding,มงคลแฝด,What Thai wedding object must be kept at an elevated position before use and not placed on the floor to maintain its spiritual significance?
45
- 203,2,Indonesia,music,indonesian gong,"Which Indonesian musical instrument is made from bronze and often hung on a wooden frame, symbolizing the greatness of God?"
46
- 217,2,Indonesia,game,permainan congklak,Which traditional Indonesian board game object is famously known to incorporate a tactical trading strategy to recoup as many items as possible?
47
- 223,2,Indonesia,game,permainan congklak,Which traditional Indonesian game object is commonly also known as 'dakon' for its Javanese variant?
48
- 245,2,Myanmar,wedding,မင်္ဂလာ ဝတ်စုံ wedding,Can you refer to the Burmese ceremonial garment in the image that signifies the sacred bond and lifelong commitment?
49
- 246,2,Myanmar,wedding,မင်္ဂလာ ဝတ်စုံ wedding,Which Burmese object in the image is placed over the couple by their wedding sponsors as a symbol of marital strength and guidance?
50
- 247,2,Myanmar,wedding,မင်္ဂလာ ဝတ်စုံ wedding,Which Burmese object in the image is chosen in auspicious colors to bring good fortune and harmony to the couple’s marriage?
51
- 249,2,Myanmar,wedding,myanmarese wedding dress,Which Burmese object in the image is worn during the wedding procession as a representation of elegance and marital blessings?
52
- 251,2,Myanmar,wedding,myanmarese wedding dress,Which Burmese object in the image is adorned with gold and silver thread embroidery to represent prosperity and success in marriage?
53
- 256,2,Myanmar,wedding,myanmarese wedding dress,Which Burmese object in the image is chosen based on astrological guidance to ensure a prosperous and harmonious marriage?
54
- 265,2,Indonesia,dance,tari jaipongan,Which people in the image acting traditional Indonesian dance originating from West Java is infamous for its energetic and swift pace symbol?
55
- 274,2,Indonesia,music,indonesian suling,Which traditional instrument produces expressive melodies in Indonesian gamelan orchestras?
56
- 275,2,Indonesia,music,indonesian suling,Which melancholic and harmonic Indonesian traditional instrument stems from the contemporary ancient background?
57
- 279,2,Thailand,wedding,ขันหมาก,"Which cultural artifact refers to the ceremony that includes ""Phan Khan Mak Ek"" and ""Phan Khan Mak Toh""?"
58
- 284,2,Thailand,wedding,ขันหมาก,What is the Thai wedding custom where the groom's family carries betel nut trays?
59
- 296,2,Thailand,wedding,สินสอด,What Thai wedding tradition requires the groom to present financial assets to the bride’s family as a sign of commitment?
60
- 309,2,Indonesia,wedding,uang panai wedding,"Which object in the image represents the traditional dowry given by a man when proposing to a woman from the Bugis or Makassar tribes in South Sulawesi, a practice still followed today?"
61
- 323,2,Myanmar,game,chinlone,"Can you identify the sport in the image where players use their feet, knees, and other parts of the body, excluding hands, to keep a rattan ball airborne?"
62
- 329,2,Philippines,wedding,bouquet wedding,Which object in the image does the bride hold throughout the ceremony until the moment she officially marries the groom?
63
- 338,2,Myanmar,dance,ကဗျာလွတ် လွ အက တ်,Which Burmese traditional performance form allows dancers creative freedom in expression?
64
- 341,2,Myanmar,dance,ကဗျာလွတ် လွ အက တ်,Which person showing the act of traditional Burmese dance refering to ancient literary nature?
65
- 355,2,Vietnam,wedding,lễ cưới truyền thống,Which traditional Vietnamese event emphasizes family unity and gratitude?
66
- 356,2,Vietnam,wedding,lễ cưới truyền thống,"Which person is part of the Vietnamese ceremony consisting of multiple rituals, from proposal to marriage?"
67
- 357,2,Vietnam,wedding,lễ cưới truyền thống,"Which relatable counterpart in the image is part of the traditional Vietnamese wedding that is famous for the ethics of the ""three bonds and five constants"" term?"
68
- 358,2,Vietnam,wedding,lễ cưới truyền thống,"Which object in the image is part of the Vietnamese marriage ceremony settings that are commonly followed by Dam Hoi engagement ceremony, commonly half a year before the wedding?"
69
- 360,2,Vietnam,wedding,lễ cưới truyền thống,Which wedding tradition involves wearing the áo dài as a symbol of elegance?
70
- 361,2,Vietnam,wedding,lễ cưới truyền thống,Which people is the main actor of the Vietnamese traditional event that includes a formal procession to escort the bride?
71
- 362,2,Vietnam,wedding,lễ cưới truyền thống,Which cultural event features the exchange of betel nuts as a symbol of marriage?
72
- 377,2,Malaysia,music,malaysian gambus,"Which instrument, evolved from the Arabic oud, has become a symbol of Malay traditional music?"
73
- 383,2,Malaysia,music,malaysian gambus,"Which plucked bowl-lute chordophone, associated with Muslim identity, is played solo or in ensembles during community celebrations?"
74
- 385,2,Indonesia,wedding,tumpeng wedding,Which of the traditional Indonesian wedding artifact symbolizes balance and harmony in married life?
75
- 396,2,Malaysia,wedding,baju kurung wedding,Which outfit is commonly worn by Malay brides during the akad nikah ceremony?
76
- 397,2,Malaysia,wedding,baju kurung wedding,"Which wedding dress reflects Malay cultural identity through its elegant simplicity, elegance, and swift tradition?"
77
- 398,2,Malaysia,wedding,baju kurung wedding,Which dress is paired with a selendang or tudung in Malay weddings?
78
- 399,2,Malaysia,wedding,baju kurung wedding,Which attire has remained a timeless choice for generations of Malay brides?
79
- 400,2,Malaysia,wedding,baju kurung wedding,Which outfit is often tailored with songket fabric for Malay weddings?
80
- 402,2,Malaysia,wedding,baju kurung wedding,Which traditional Malay wedding attire reflects cultural heritage and modesty?
81
- 404,2,Malaysia,wedding,baju kurung wedding,Which traditional Malay wedding attributes have origin from Sultan Abu Bakar's kingdom days?
82
- 405,2,Malaysia,wedding,baju kurung wedding,Which Malay wedding attire embodies Islamic values and traditional aesthetics?
83
- 410,2,Myanmar,music,စောင်း,"Which Burmese object in the image is played using delicate hand movements, requiring skill and precision to produce its signature melodies?"
84
- 419,2,Thailand,dance,โขน,Which ancient Thai performers reflects Hindu-Buddhist influences in its storytelling and aesthetics?
85
- 423,2,Thailand,dance,โขน,Which character in the image is associated with Krao Nok melody being played when they marched into the scene?
86
- 424,2,Thailand,dance,โขน,Which character from Thai classical masked dance symbolizes male human character?
87
- 425,2,Thailand,dance,โขน,Which character in the image symbolizes regal body language?
88
- 428,2,Thailand,dance,โขน,Which Thai dance-theater tradition features elaborate gold-embroidered costumes and headdresses?
89
- 435,2,Myanmar,music,နှဲ,"Which object in the image is a conical shawm with a double reed, commonly used in Burmese music?"
90
- 436,2,Myanmar,music,နှဲ,"Can you refer to the Burmese instrument in the image that has two variations, one used for ordinary songs and the other for grand style performances?"
91
- 438,2,Myanmar,music,နှဲ,Can you refer to the traditional Burmese wind instrument in the image that features a sextuple reed made from the young leaf of the toddy palm?
92
- 448,2,Indonesia,music,indonesian rebab,Which instrument in Malaysian music with a bow symbolizes wisdom and storytelling?
93
- 452,2,Indonesia,music,indonesian rebab,"Which Indonesian music instrument that is associated with the spiritual healing tradition called ""Main Puteri""?"
94
- 462,2,Indonesia,music,indonesian angklung,Which traditional shaken Indonesian instrument is easily teachable in musical education due to its diatonic scale nature?
95
- 466,2,Indonesia,music,indonesian angklung,Which traditional Indonesian musical instrument made of bamboo has existed since the Indonesian pre-Hinduism era?
96
- 491,2,Indonesia,wedding,siger wedding,Which women's wedding headpiece symbolizes the Pepadun nine clans in the Indonesian Pepadun tradition?
97
- 492,2,Indonesia,wedding,siger wedding,Which Indonesian wedding accessory's name refers to the emphasis on the 'confinement' of worldly lust?
98
- 538,2,Indonesia,game,permainan gasing,"Which object symbolizes the traditional spinning top game variant from Natuna, Indonesia?"
99
- 541,2,Indonesia,game,permainan gasing,"As commonly known as traditional spinning tops game from Indonesia with variety from Java, Manado, Sumatera, and Bali, which group of objects in the image refers to them?"
100
- 548,2,Indonesia,game,permainan gasing,Which object in the image is alternatively known as Panggal in Indonesia and famous amongst farmer's families for children's plays?
101
- 566,2,Indonesia,dance,tari barong,Which of the character in this traditional Balinese dance often associated with using weapon as their battling stance?
102
- 577,2,Indonesia,dance,tari barong,Which object in the image is the main character of the traditional Balinese Barong dance?
103
- 578,2,Indonesia,dance,tari barong,Which character symbolises goodwill in the middle of an eternal battle in the Barong dance?
104
- 602,2,Myanmar,game,tug-of-war,Which game characteristic in the image shows the event that is performed during the Burmese month of Tabodwe among the Rakhine people?
105
- 637,2,Vietnam,game,đá cầu,Which game object in the image represents the Vietnamese tradition that was revived after being neglected due to war and later became a symbol of national pride?
106
- 656,2,Philippines,wedding,barong tagalog wedding,Which wedding garment in the image has remained unchanged in essence despite evolving fashion trends?
107
- 658,2,Philippines,wedding,barong tagalog wedding,"Which clothing in the image represents the fusion of indigenous Filipino craftsmanship and Spanish colonial influence, forming a unique cultural identity?"
108
- 660,2,Philippines,wedding,barong tagalog wedding,Which Filipino garment in the image is traditionally made from delicate pineapple fibers and requires extensive skill and time to produce?
109
- 682,2,Myanmar,dance,ဇာတ်ပွဲ,Which Burmese theatrical event often features performers competing for audience favor and donations?
110
- 684,2,Indonesia,wedding,dodot wedding,Which Javanese wedding outfit is worn in formal palace ceremonies?
111
- 694,2,Indonesia,wedding,dodot wedding,Which outfit is commonly worn by the groom alongside a Kuluk (Javanese headdress)?
112
- 706,2,Indonesia,game,permainan kelereng,Which object in the image is used in an Indonesian game that enhances hand-eye coordination and motor skills?
113
- 725,2,Indonesia,wedding,selendang wedding,Which traditional wedding cloth is used in dances performed at Indonesian ceremonies?
114
- 748,2,Myanmar,game,boat racing,"Which Myanmar racing event whose object usually represents local spirits called ""Nat""?"
115
- 754,2,Myanmar,game,boat racing,Which activity in the image demonstrates the Myanmar sport that combines physical endurance with synchronized teamwork?
116
- 780,2,Indonesia,game,permainan egrang,Which property of the Indonesian folk game emphasizes striking a balance in the middle of the hardship of life?
117
- 781,2,Indonesia,game,permainan egrang,"Which object refers to the Indonesian pastime that challenges balance, coordination, and agility?"
118
- 792,2,Indonesia,dance,tari kuda lumping,Which attribute of the Javanese folk dance is associated with the act of eating glass to showcase endurance during the show?
119
- 794,2,Indonesia,dance,tari kuda lumping,Which property is part of the Javanese dance sometimes accompanied by spiritual chants and ritual prayers?
120
- 799,2,Indonesia,dance,tari kuda lumping,Which traditional object is part of the Indonesian dance that is culturally recognised as the dance of possessed troops?
121
- 804,2,Malaysia,music,malaysian sape,Which object associated with the indigenous Sarawakian music tradition has been recognized by UNESCO for its cultural significance?
122
- 815,2,Malaysia,music,malaysian sape,Which musical instrument has been revived through cultural education programs in Malaysia?
123
- 831,2,Thailand,game,ชักเย่อ,Which game object in Thai schools teaches children teamwork and perseverance?
124
- 839,1,Thailand,wedding,หมาก,Which traditional Thai wedding snacks symbolize fertility and are made from beans?
125
- 859,1,Myanmar,dance,kyaukse dance,Which Burmese dance is performed annually to honor Buddha and seek blessings for a prosperous harvest?
126
- 860,1,Myanmar,dance,kyaukse dance,Which dance reflects Myanmar’s deep cultural connection with elephants in religious and agricultural life?
127
- 861,1,Vietnam,game,đánh đáo,"Which game is traditionally played using coins or small, round stones before modern materials?"
128
- 862,1,Vietnam,game,đánh đáo,Which traditional Vietnamese game involves flicking small discs to hit a target?
129
- 866,1,Thailand,celebration,วันสงกรานต์,"Which celebration artifact in Thailand is tightly associated with Songkran Day, symbolizing the Thai new year?"
130
- 869,1,Myanmar,dance,တပင်တို င် င်တို အက င်,"Which traditional Myanmar dancer expresses emotions and tells stories, often mimicking natural elements or spiritual themes?"
131
- 873,1,Philippines,wedding,candles wedding,Which object in the image symbolizes the merging of two lives into one during the wedding ceremony?
132
- 874,1,Indonesia,music,indonesian bamboo flute,"Which traditional Indonesian blowable music instrument originated from Kerinci, Jambi?"
133
- 875,1,Indonesia,music,indonesian bamboo flute,Which traditional Malaysian wind instrument is made from bamboo?
134
- 878,1,Thailand,wedding,การนับสินสอดทองหมั้น,"What is Thai wedding tradition customs, once the groom's family has presented the dowry, the elders carefully check and announce the amount to all attendees?"
135
- 899,1,Myanmar,game,ချောတိုင်တို တ င် က်,"Which cultural object in the image depicts the traditional Burmese game object, which is often coated with oil?"
136
- 909,1,Thailand,celebration,วันรัฐธรรมนูญแห่งประเทศไทย,Which Thai national holiday commemorates the adoption of the country’s first permanent constitution?
137
- 931,1,Vietnam,game,nhảy lò cò,Which part of the game area helps Vietnamese children improve balance and agility?
138
- 932,1,Vietnam,game,nhảy lò cò,Which area refers to the Vietnamese game that involves throwing a small object into squares and hopping without stepping on lines?
139
- 951,1,Myanmar,game,sepak takraw,Which object in the image is made from rattan and associated with the main property of traditional performance-based sports in Myanmar?
140
- 961,1,Myanmar,music,စည်း နဲ့ဝါး နဲ့,"Which object in the image is a traditional Burmese musical instrument that produces a clear, ringing sound during folk performances?"
141
- 962,1,Myanmar,music,စည်း နဲ့ဝါး နဲ့,Which object in the image is played alongside gongs and drums to create the signature sound of Burmese Nat Pwe ceremonies?
142
- 985,1,Thailand,celebration,วันมาฆบูชา,Which object represents the Buddhist holiday that is celebrated on the full moon of the third lunar month?
143
- 992,1,Thailand,celebration,มาฆบูชา,"Which property is part of the symbolizing object of the Buddhist holiday being conducted in Thailand, Laos, Cambodia, and Myanmar?"
144
- 1017,1,Myanmar,celebration,bo tree watering festival,Which devotional practice portrayed in the image demonstrates the Burmese ritual that is performed annually to protect Bodhi trees and honor Buddhist teachings?
145
- 1024,1,Indonesia,music,indonesian gamelan,Which traditional Indonesian orchestra is deeply tied to court rituals and religious ceremonies?
146
- 1033,1,Thailand,celebration,วันอาสาฬหบูชา,Which artifact is part of the Thai offering ceremony that symbolizes worship to Buddha as referred from the Dakkhinavibhanga Sutta?
147
- 1044,1,Philippines,wedding,belo wedding,Can you refer to the traditional wedding item in the image that embodies faith in divine protection for the couple’s future?
148
- 1046,1,Philippines,wedding,belo wedding,Which object in the image is draped over the bride’s head and the groom’s shoulder to represent unity and protection in marriage?
149
- 1047,1,Thailand,wedding,มงคลแฝด,What traditional Thai wedding item can be purchased from religious supply stores and is sometimes blessed by monks or priests before use?
150
- 1048,1,Thailand,wedding,มงคลแฝด,What Thai wedding object must be kept at an elevated position before use and not placed on the floor to maintain its spiritual significance?
151
- 1059,1,Indonesia,music,indonesian gong,"Which Indonesian musical instrument is made from bronze and often hung on a wooden frame, symbolizing the greatness of God?"
152
- 1073,1,Indonesia,game,permainan congklak,Which traditional Indonesian board game object is famously known to incorporate a tactical trading strategy to recoup as many items as possible?
153
- 1077,1,Indonesia,game,permainan congklak,Which traditional Indonesian game object is commonly also known as 'dakon' for its Javanese variant?
154
- 1096,1,Indonesia,dance,tari jaipongan,Which people in the image acting traditional Indonesian dance originating from West Java is infamous for its energetic and swift pace symbol?
155
- 1106,1,Indonesia,music,indonesian suling,Which melancholic and harmonic Indonesian traditional instrument stems from the contemporary ancient background?
156
- 1109,1,Indonesia,music,indonesian suling,Which traditional instrument produces expressive melodies in Indonesian gamelan orchestras?
157
- 1114,1,Thailand,wedding,ขันหมาก,What is the Thai wedding custom where the groom's family carries betel nut trays?
158
- 1116,1,Thailand,wedding,ขันหมาก,"Which cultural artifact refers to the ceremony that includes ""Phan Khan Mak Ek"" and ""Phan Khan Mak Toh""?"
159
- 1137,1,Myanmar,celebration,shwedagon pagoda festival,Which cultural object represents the Buddhist festival in Myanmar held on the full moon of Tabaung?
160
- 1139,1,Myanmar,celebration,shwedagon pagoda festival,Which Myanmar festival sees thousands circumambulating a sacred stupa as an act of devotion?
161
- 1140,1,Myanmar,celebration,shwedagon pagoda festival,Which Myanmar festival gathers thousands of pilgrims to pay homage at a golden stupa?
162
- 1160,1,Thailand,wedding,สินสอด,What Thai wedding tradition requires the groom to present financial assets to the bride’s family as a sign of commitment?
163
- 1162,1,Indonesia,wedding,uang panai wedding,"Which object in the image represents the traditional dowry given by a man when proposing to a woman from the Bugis or Makassar tribes in South Sulawesi, a practice still followed today?"
164
- 1179,1,Myanmar,game,chinlone,"Can you identify the sport in the image where players use their feet, knees, and other parts of the body, excluding hands, to keep a rattan ball airborne?"
165
- 1191,1,Philippines,wedding,bouquet wedding,Which object in the image does the bride hold throughout the ceremony until the moment she officially marries the groom?
166
- 1194,1,Myanmar,dance,ကဗျာလွတ် လွ အက တ်,Which person showing the act of traditional Burmese dance refering to ancient literary nature?
167
- 1200,1,Myanmar,dance,ကဗျာလွတ် လွ အက တ်,Which Burmese traditional performance form allows dancers creative freedom in expression?
168
- 1219,1,Malaysia,music,malaysian gambus,"Which plucked bowl-lute chordophone, associated with Muslim identity, is played solo or in ensembles during community celebrations?"
169
- 1222,1,Malaysia,music,malaysian gambus,"Which instrument, evolved from the Arabic oud, has become a symbol of Malay traditional music?"
170
- 1230,1,Indonesia,wedding,tumpeng wedding,Which of the traditional Indonesian wedding artifact symbolizes balance and harmony in married life?
171
- 1235,1,Myanmar,celebration,နတ်ပွဲ တ် ပွဲ,Which Myanmar celebration allows devotees to seek guidance and blessings from spirit mediums?
172
- 1245,1,Myanmar,music,စောင်း,"Which Burmese object in the image is played using delicate hand movements, requiring skill and precision to produce its signature melodies?"
173
- 1256,1,Myanmar,music,နှဲ,"Which object in the image is a conical shawm with a double reed, commonly used in Burmese music?"
174
- 1257,1,Myanmar,music,နှဲ,Can you refer to the traditional Burmese wind instrument in the image that features a sextuple reed made from the young leaf of the toddy palm?
175
- 1259,1,Myanmar,music,နှဲ,"Can you refer to the Burmese instrument in the image that has two variations, one used for ordinary songs and the other for grand style performances?"
176
- 1278,1,Indonesia,music,indonesian rebab,Which instrument in Malaysian music with a bow symbolizes wisdom and storytelling?
177
- 1279,1,Indonesia,music,indonesian rebab,"Which Indonesian music instrument that is associated with the spiritual healing tradition called ""Main Puteri""?"
178
- 1285,1,Indonesia,music,indonesian angklung,Which traditional shaken Indonesian instrument is easily teachable in musical education due to its diatonic scale nature?
179
- 1291,1,Indonesia,music,indonesian angklung,Which traditional Indonesian musical instrument made of bamboo has existed since the Indonesian pre-Hinduism era?
180
- 1311,1,Indonesia,wedding,siger wedding,Which women's wedding headpiece symbolizes the Pepadun nine clans in the Indonesian Pepadun tradition?
181
- 1312,1,Indonesia,wedding,siger wedding,Which Indonesian wedding accessory's name refers to the emphasis on the 'confinement' of worldly lust?
182
- 1361,1,Indonesia,game,permainan gasing,"As commonly known as traditional spinning tops game from Indonesia with variety from Java, Manado, Sumatera, and Bali, which group of objects in the image refers to them?"
183
- 1367,1,Indonesia,game,permainan gasing,Which object in the image is alternatively known as Panggal in Indonesia and famous amongst farmer's families for children's plays?
184
- 1368,1,Indonesia,game,permainan gasing,"Which object symbolizes the traditional spinning top game variant from Natuna, Indonesia?"
185
- 1377,1,Myanmar,celebration,သဲပုံသဲ ပုံစေတီပွ,Which object refers to the Myanmar festival that is celebrated at the end of the dry season to honor Buddhist teachings?
186
- 1383,1,Myanmar,celebration,သဲပုံသဲ ပုံစေတီပွ,Which object refers to the Myanmar celebration that combines religious devotion with artistic sand pagoda designs?
187
- 1386,1,Myanmar,celebration,သဲပုံသဲ ပုံစေတီပွ,Which object refers to the Buddhist festival in Myanmar that symbolizes impermanence and devotion?
188
- 1405,1,Indonesia,dance,tari barong,Which of the character in this traditional Balinese dance often associated with using weapon as their battling stance?
189
- 1406,1,Indonesia,dance,tari barong,Which object in the image is the main character of the traditional Balinese Barong dance?
190
- 1408,1,Indonesia,dance,tari barong,Which character symbolises goodwill in the middle of an eternal battle in the Barong dance?
191
- 1443,1,Myanmar,game,tug-of-war,Which game characteristic in the image shows the event that is performed during the Burmese month of Tabodwe among the Rakhine people?
192
- 1476,1,Vietnam,game,đá cầu,Which game object in the image represents the Vietnamese tradition that was revived after being neglected due to war and later became a symbol of national pride?
193
- 1503,1,Philippines,wedding,barong tagalog wedding,"Which clothing in the image represents the fusion of indigenous Filipino craftsmanship and Spanish colonial influence, forming a unique cultural identity?"
194
- 1506,1,Philippines,wedding,barong tagalog wedding,Which Filipino garment in the image is traditionally made from delicate pineapple fibers and requires extensive skill and time to produce?
195
- 1507,1,Philippines,wedding,barong tagalog wedding,Which wedding garment in the image has remained unchanged in essence despite evolving fashion trends?
196
- 1517,1,Myanmar,dance,ဇာတ်ပွဲ,Which Burmese theatrical event often features performers competing for audience favor and donations?
197
- 1528,1,Indonesia,wedding,dodot wedding,Which outfit is commonly worn by the groom alongside a Kuluk (Javanese headdress)?
198
- 1544,1,Indonesia,game,permainan kelereng,Which object in the image is used in an Indonesian game that enhances hand-eye coordination and motor skills?
199
- 1555,1,Indonesia,wedding,selendang wedding,Which part of Indonesian wedding attire varies in design based on regional customs?
200
- 1563,1,Indonesia,wedding,selendang wedding,Which traditional wedding cloth is used in dances performed at Indonesian ceremonies?
201
- 1580,1,Indonesia,dance,tari legong,Which dancer in the image associated with the main character of Condong lore?
202
- 1589,1,Thailand,celebration,เทศกาลสงกรานต์,Which garland in the image plays a key role in water-pouring ceremonies meant to ask for forgiveness and blessings?
203
- 1603,1,Myanmar,game,boat racing,"Which Myanmar racing event whose object usually represents local spirits called ""Nat""?"
204
- 1611,1,Myanmar,game,boat racing,Which artifact in the image shows the Myanmar competition that historically served as a test of naval skill for warriors?
205
- 1627,1,Myanmar,music,ပလွေ,Can you refer to the instrument in the image that is used in Myanmar’s seasonal festivals to accompany traditional dances?
206
- 1631,1,Indonesia,game,permainan egrang,"Which object refers to the Indonesian pastime that challenges balance, coordination, and agility?"
207
- 1643,1,Indonesia,game,permainan egrang,Which property of the Indonesian folk game emphasizes striking a balance in the middle of the hardship of life?
208
- 1646,1,Indonesia,dance,tari kuda lumping,Which property is part of the Javanese dance sometimes accompanied by spiritual chants and ritual prayers?
209
- 1648,1,Indonesia,dance,tari kuda lumping,Which attribute of the Javanese folk dance is associated with the act of eating glass to showcase endurance during the show?
210
- 1665,1,Malaysia,music,malaysian sape,Which musical instrument has been revived through cultural education programs in Malaysia?
211
- 1678,3,Thailand,wedding,หมาก,Which traditional Thai wedding snacks symbolize fertility and are made from beans?
212
- 1684,3,Myanmar,wedding,thanaka wedding,"Which object in the image is traditionally applied to the bride’s face to symbolize beauty, purity, and cultural heritage?"
213
- 1696,3,Myanmar,dance,kyaukse dance,Which dance reflects Myanmar’s deep cultural connection with elephants in religious and agricultural life?
214
- 1699,3,Vietnam,game,đánh đáo,"Which game is traditionally played using coins or small, round stones before modern materials?"
215
- 1700,3,Vietnam,game,đánh đáo,Which traditional Vietnamese game involves flicking small discs to hit a target?
216
- 1702,3,Myanmar,dance,တပင်တို င် င်တို အက င်,"Which traditional Myanmar dancer expresses emotions and tells stories, often mimicking natural elements or spiritual themes?"
217
- 1705,3,Philippines,wedding,candles wedding,Which object in the image symbolizes the merging of two lives into one during the wedding ceremony?
218
- 1707,3,Indonesia,music,indonesian bamboo flute,Which traditional Malaysian wind instrument is made from bamboo?
219
- 1708,3,Indonesia,music,indonesian bamboo flute,"Which traditional Indonesian blowable music instrument originated from Kerinci, Jambi?"
220
- 1709,3,Thailand,wedding,การนับสินสอดทองหมั้น,"What is Thai wedding tradition customs, once the groom's family has presented the dowry, the elders carefully check and announce the amount to all attendees?"
221
- 1724,3,Myanmar,game,ချောတိုင်တို တ င် က်,"Which cultural object in the image depicts the traditional Burmese game object, which is often coated with oil?"
222
- 1747,3,Vietnam,game,nhảy lò cò,Which area refers to the Vietnamese game that involves throwing a small object into squares and hopping without stepping on lines?
223
- 1748,3,Vietnam,game,nhảy lò cò,Which part of the game area helps Vietnamese children improve balance and agility?
224
- 1749,3,Philippines,music,philipino banduria,"Which object in the image was part of grand rondalla gatherings, where musicians played with skill and passion in social events and celebrations?"
225
- 1750,3,Philippines,music,philipino banduria,Which instrument in the image was introduced by the Spaniards in the 1800s and became deeply rooted in Filipino musical traditions?
226
- 1751,3,Philippines,music,philipino banduria,"Which instrument in the image carried the melodies of kundiman, telling stories of love and longing in Filipino tradition?"
227
- 1772,3,Myanmar,game,sepak takraw,Which object in the image is made from rattan and associated with the main property of traditional performance-based sports in Myanmar?
228
- 1778,3,Myanmar,music,စည်း နဲ့ဝါး နဲ့,"Which object in the image is a traditional Burmese musical instrument that produces a clear, ringing sound during folk performances?"
229
- 1781,3,Myanmar,music,စည်း နဲ့ဝါး နဲ့,Which object in the image is played alongside gongs and drums to create the signature sound of Burmese Nat Pwe ceremonies?
230
- 1787,3,Thailand,music,ระนาด,Which traditional Thai percussion instrument consists of wooden bars arranged in a row?
231
- 1788,3,Thailand,music,ระนาด,Which Thai musical instrument has different variations like Ranad Ek and Ranad Thum?
232
- 1789,3,Thailand,music,ระนาด,"Which Thai percussion instrument is essential in royal and religious music, producing expressive and resonant tones?"
233
- 1791,3,Thailand,music,ระนาด,"Which instrument, played with two mallets, is central to Thai classical music?"
234
- 1807,3,Thailand,music,อังกะลุง,Which Thai bamboo instrument is used in both folk and classical performances?
235
- 1808,3,Thailand,music,อังกะลุง,"Which instrument, originally from Indonesia, has been adapted into Thai musical traditions?"
236
- 1811,3,Thailand,music,อังกะลุง,Which Thai musical instrument is often performed in group ensembles to create harmony?
237
- 1812,3,Cambodia,music,cambodian khaen,"Which instrument, used in Cambodian village festivals and Buddhist ceremonies, is recognized for its distinctive drone-like harmonics?"
238
- 1813,3,Cambodia,music,cambodian khaen,Which traditional Cambodian musical practice in Stung Treng uses the Khaen to preserve the region’s Lao-influenced folk heritage?
239
- 1815,3,Cambodia,music,cambodian khaen,"Which instrument, played by Cambodia’s Lao communities, is essential in ceremonies, dance, and spiritual storytelling?"
240
- 1816,3,Cambodia,music,cambodian khaen,"Which object associated with a musical tradition in Cambodia carries the spiritual and cultural influence of Laos, often performed in ceremonies and communal gatherings?"
241
- 1823,3,Philippines,music,philipino kudyapi,Which object in the image was once used in the original accompaniment for the Singkil dance before being replaced by the kulintang?
242
- 1824,3,Philippines,music,philipino kudyapi,"Which instrument in the image was used by the Maguindanao and Maranao for the dayunday, a musical duel during weddings and festivals?"
243
- 1825,3,Philippines,music,philipino kudyapi,Which instrument in the image was traditionally used in courtship and love songs among indigenous Filipino groups?
244
- 1827,3,Philippines,music,philipino kudyapi,Which traditional philipines instrument in the image was associated with spiritual rituals and symbolic meanings in indigenous communities?
245
- 1829,3,Cambodia,music,cambodian chhing,Which essential instrument in Cambodian ensembles ensures precise timing in rituals and festivals?
246
- 1832,3,Cambodia,music,cambodian chhing,Which traditional Cambodian instrument maintains tempo in classical and folk performances?
247
- 1833,3,Cambodia,music,cambodian chhing,Which rhythmic element in Cambodian music structures royal and temple performances?
248
- 1845,3,Indonesia,music,indonesian gamelan,Which traditional Indonesian orchestra is deeply tied to court rituals and religious ceremonies?
249
- 1860,3,Philippines,wedding,belo wedding,Can you refer to the traditional wedding item in the image that embodies faith in divine protection for the couple’s future?
250
- 1861,3,Philippines,wedding,belo wedding,Which object in the image is draped over the bride’s head and the groom’s shoulder to represent unity and protection in marriage?
251
- 1862,3,Thailand,wedding,มงคลแฝด,What traditional Thai wedding item can be purchased from religious supply stores and is sometimes blessed by monks or priests before use?
252
- 1863,3,Thailand,wedding,มงคลแฝด,What Thai wedding object must be kept at an elevated position before use and not placed on the floor to maintain its spiritual significance?
253
- 1873,3,Indonesia,music,indonesian gong,"Which Indonesian musical instrument is made from bronze and often hung on a wooden frame, symbolizing the greatness of God?"
254
- 1887,3,Indonesia,game,permainan congklak,Which traditional Indonesian board game object is famously known to incorporate a tactical trading strategy to recoup as many items as possible?
255
- 1893,3,Indonesia,game,permainan congklak,Which traditional Indonesian game object is commonly also known as 'dakon' for its Javanese variant?
256
- 1915,3,Myanmar,wedding,မင်္ဂလာ ဝတ်စုံ wedding,Can you refer to the Burmese ceremonial garment in the image that signifies the sacred bond and lifelong commitment?
257
- 1916,3,Myanmar,wedding,မင်္ဂလာ ဝတ်စုံ wedding,Which Burmese object in the image is placed over the couple by their wedding sponsors as a symbol of marital strength and guidance?
258
- 1917,3,Myanmar,wedding,မင်္ဂလာ ဝတ်စုံ wedding,Which Burmese object in the image is chosen in auspicious colors to bring good fortune and harmony to the couple’s marriage?
259
- 1919,3,Myanmar,wedding,myanmarese wedding dress,Which Burmese object in the image is worn during the wedding procession as a representation of elegance and marital blessings?
260
- 1921,3,Myanmar,wedding,myanmarese wedding dress,Which Burmese object in the image is adorned with gold and silver thread embroidery to represent prosperity and success in marriage?
261
- 1926,3,Myanmar,wedding,myanmarese wedding dress,Which Burmese object in the image is chosen based on astrological guidance to ensure a prosperous and harmonious marriage?
262
- 1934,3,Indonesia,dance,tari jaipongan,Which people in the image acting traditional Indonesian dance originating from West Java is infamous for its energetic and swift pace symbol?
263
- 1943,3,Indonesia,music,indonesian suling,Which traditional instrument produces expressive melodies in Indonesian gamelan orchestras?
264
- 1944,3,Indonesia,music,indonesian suling,Which melancholic and harmonic Indonesian traditional instrument stems from the contemporary ancient background?
265
- 1948,3,Thailand,wedding,ขันหมาก,"Which cultural artifact refers to the ceremony that includes ""Phan Khan Mak Ek"" and ""Phan Khan Mak Toh""?"
266
- 1953,3,Thailand,wedding,ขันหมาก,What is the Thai wedding custom where the groom's family carries betel nut trays?
267
- 1965,3,Thailand,wedding,สินสอด,What Thai wedding tradition requires the groom to present financial assets to the bride’s family as a sign of commitment?
268
- 1978,3,Indonesia,wedding,uang panai wedding,"Which object in the image represents the traditional dowry given by a man when proposing to a woman from the Bugis or Makassar tribes in South Sulawesi, a practice still followed today?"
269
- 1992,3,Myanmar,game,chinlone,"Can you identify the sport in the image where players use their feet, knees, and other parts of the body, excluding hands, to keep a rattan ball airborne?"
270
- 1998,3,Philippines,wedding,bouquet wedding,Which object in the image does the bride hold throughout the ceremony until the moment she officially marries the groom?
271
- 2008,3,Myanmar,dance,ကဗျာလွတ် လွ အက တ်,Which person showing the act of traditional Burmese dance refering to ancient literary nature?
272
- 2022,3,Vietnam,wedding,lễ cưới truyền thống,Which traditional Vietnamese event emphasizes family unity and gratitude?
273
- 2023,3,Vietnam,wedding,lễ cưới truyền thống,"Which person is part of the Vietnamese ceremony consisting of multiple rituals, from proposal to marriage?"
274
- 2024,3,Vietnam,wedding,lễ cưới truyền thống,"Which relatable counterpart in the image is part of the traditional Vietnamese wedding that is famous for the ethics of the ""three bonds and five constants"" term?"
275
- 2025,3,Vietnam,wedding,lễ cưới truyền thống,"Which object in the image is part of the Vietnamese marriage ceremony settings that are commonly followed by Dam Hoi engagement ceremony, commonly half a year before the wedding?"
276
- 2027,3,Vietnam,wedding,lễ cưới truyền thống,Which wedding tradition involves wearing the áo dài as a symbol of elegance?
277
- 2028,3,Vietnam,wedding,lễ cưới truyền thống,Which people is the main actor of the Vietnamese traditional event that includes a formal procession to escort the bride?
278
- 2029,3,Vietnam,wedding,lễ cưới truyền thống,Which cultural event features the exchange of betel nuts as a symbol of marriage?
279
- 2044,3,Malaysia,music,malaysian gambus,"Which instrument, evolved from the Arabic oud, has become a symbol of Malay traditional music?"
280
- 2050,3,Malaysia,music,malaysian gambus,"Which plucked bowl-lute chordophone, associated with Muslim identity, is played solo or in ensembles during community celebrations?"
281
- 2052,3,Indonesia,wedding,tumpeng wedding,Which of the traditional Indonesian wedding artifact symbolizes balance and harmony in married life?
282
- 2063,3,Malaysia,wedding,baju kurung wedding,Which outfit is commonly worn by Malay brides during the akad nikah ceremony?
283
- 2064,3,Malaysia,wedding,baju kurung wedding,"Which wedding dress reflects Malay cultural identity through its elegant simplicity, elegance, and swift tradition?"
284
- 2065,3,Malaysia,wedding,baju kurung wedding,Which dress is paired with a selendang or tudung in Malay weddings?
285
- 2066,3,Malaysia,wedding,baju kurung wedding,Which attire has remained a timeless choice for generations of Malay brides?
286
- 2067,3,Malaysia,wedding,baju kurung wedding,Which outfit is often tailored with songket fabric for Malay weddings?
287
- 2069,3,Malaysia,wedding,baju kurung wedding,Which traditional Malay wedding attire reflects cultural heritage and modesty?
288
- 2071,3,Malaysia,wedding,baju kurung wedding,Which traditional Malay wedding attributes have origin from Sultan Abu Bakar's kingdom days?
289
- 2072,3,Malaysia,wedding,baju kurung wedding,Which Malay wedding attire embodies Islamic values and traditional aesthetics?
290
- 2077,3,Myanmar,music,စောင်း,"Which Burmese object in the image is played using delicate hand movements, requiring skill and precision to produce its signature melodies?"
291
- 2086,3,Thailand,dance,โขน,Which ancient Thai performers reflects Hindu-Buddhist influences in its storytelling and aesthetics?
292
- 2090,3,Thailand,dance,โขน,Which character in the image is associated with Krao Nok melody being played when they marched into the scene?
293
- 2091,3,Thailand,dance,โขน,Which character from Thai classical masked dance symbolizes male human character?
294
- 2092,3,Thailand,dance,โขน,Which character in the image symbolizes regal body language?
295
- 2095,3,Thailand,dance,โขน,Which Thai dance-theater tradition features elaborate gold-embroidered costumes and headdresses?
296
- 2102,3,Myanmar,music,နှဲ,"Which object in the image is a conical shawm with a double reed, commonly used in Burmese music?"
297
- 2103,3,Myanmar,music,နှဲ,"Can you refer to the Burmese instrument in the image that has two variations, one used for ordinary songs and the other for grand style performances?"
298
- 2105,3,Myanmar,music,နှဲ,Can you refer to the traditional Burmese wind instrument in the image that features a sextuple reed made from the young leaf of the toddy palm?
299
- 2115,3,Indonesia,music,indonesian rebab,Which instrument in Malaysian music with a bow symbolizes wisdom and storytelling?
300
- 2119,3,Indonesia,music,indonesian rebab,"Which Indonesian music instrument that is associated with the spiritual healing tradition called ""Main Puteri""?"
301
- 2129,3,Indonesia,music,indonesian angklung,Which traditional shaken Indonesian instrument is easily teachable in musical education due to its diatonic scale nature?
302
- 2133,3,Indonesia,music,indonesian angklung,Which traditional Indonesian musical instrument made of bamboo has existed since the Indonesian pre-Hinduism era?
303
- 2158,3,Indonesia,wedding,siger wedding,Which women's wedding headpiece symbolizes the Pepadun nine clans in the Indonesian Pepadun tradition?
304
- 2159,3,Indonesia,wedding,siger wedding,Which Indonesian wedding accessory's name refers to the emphasis on the 'confinement' of worldly lust?
305
- 2197,3,Indonesia,game,permainan gasing,"Which object symbolizes the traditional spinning top game variant from Natuna, Indonesia?"
306
- 2200,3,Indonesia,game,permainan gasing,"As commonly known as traditional spinning tops game from Indonesia with variety from Java, Manado, Sumatera, and Bali, which group of objects in the image refers to them?"
307
- 2207,3,Indonesia,game,permainan gasing,Which object in the image is alternatively known as Panggal in Indonesia and famous amongst farmer's families for children's plays?
308
- 2225,3,Indonesia,dance,tari barong,Which of the character in this traditional Balinese dance often associated with using weapon as their battling stance?
309
- 2232,3,Indonesia,dance,tari barong,Which object in the image is the main character of the traditional Balinese Barong dance?
310
- 2256,3,Myanmar,game,tug-of-war,Which game characteristic in the image shows the event that is performed during the Burmese month of Tabodwe among the Rakhine people?
311
- 2290,3,Vietnam,game,đá cầu,Which game object in the image represents the Vietnamese tradition that was revived after being neglected due to war and later became a symbol of national pride?
312
- 2309,3,Philippines,wedding,barong tagalog wedding,Which wedding garment in the image has remained unchanged in essence despite evolving fashion trends?
313
- 2311,3,Philippines,wedding,barong tagalog wedding,"Which clothing in the image represents the fusion of indigenous Filipino craftsmanship and Spanish colonial influence, forming a unique cultural identity?"
314
- 2313,3,Philippines,wedding,barong tagalog wedding,Which Filipino garment in the image is traditionally made from delicate pineapple fibers and requires extensive skill and time to produce?
315
- 2332,3,Myanmar,dance,ဇာတ်ပွဲ,Which Burmese theatrical event often features performers competing for audience favor and donations?
316
- 2334,3,Indonesia,wedding,dodot wedding,Which Javanese wedding outfit is worn in formal palace ceremonies?
317
- 2344,3,Indonesia,wedding,dodot wedding,Which outfit is commonly worn by the groom alongside a Kuluk (Javanese headdress)?
318
- 2356,3,Indonesia,game,permainan kelereng,Which object in the image is used in an Indonesian game that enhances hand-eye coordination and motor skills?
319
- 2375,3,Indonesia,wedding,selendang wedding,Which traditional wedding cloth is used in dances performed at Indonesian ceremonies?
320
- 2391,3,Myanmar,game,boat racing,"Which Myanmar racing event whose object usually represents local spirits called ""Nat""?"
321
- 2397,3,Myanmar,game,boat racing,Which activity in the image demonstrates the Myanmar sport that combines physical endurance with synchronized teamwork?
322
- 2423,3,Indonesia,game,permainan egrang,Which property of the Indonesian folk game emphasizes striking a balance in the middle of the hardship of life?
323
- 2424,3,Indonesia,game,permainan egrang,"Which object refers to the Indonesian pastime that challenges balance, coordination, and agility?"
324
- 2433,3,Indonesia,dance,tari kuda lumping,Which property is part of the Javanese dance sometimes accompanied by spiritual chants and ritual prayers?
325
- 2439,3,Malaysia,music,malaysian sape,Which object associated with the indigenous Sarawakian music tradition has been recognized by UNESCO for its cultural significance?
326
- 2450,3,Malaysia,music,malaysian sape,Which musical instrument has been revived through cultural education programs in Malaysia?
327
- 2471,3,Thailand,wedding,หมาก,Which traditional Thai wedding snacks symbolize fertility and are made from beans?
328
- 2489,3,Myanmar,dance,kyaukse dance,Which Burmese dance is performed annually to honor Buddha and seek blessings for a prosperous harvest?
329
- 2490,3,Myanmar,dance,kyaukse dance,Which dance reflects Myanmar’s deep cultural connection with elephants in religious and agricultural life?
330
- 2491,3,Vietnam,game,đánh đáo,"Which game is traditionally played using coins or small, round stones before modern materials?"
331
- 2492,3,Vietnam,game,đánh đáo,Which traditional Vietnamese game involves flicking small discs to hit a target?
332
- 2493,3,Myanmar,dance,တပင်တို င် င်တို အက င်,"Which traditional Myanmar dancer expresses emotions and tells stories, often mimicking natural elements or spiritual themes?"
333
- 2497,3,Philippines,wedding,candles wedding,Which object in the image symbolizes the merging of two lives into one during the wedding ceremony?
334
- 2498,3,Indonesia,music,indonesian bamboo flute,"Which traditional Indonesian blowable music instrument originated from Kerinci, Jambi?"
335
- 2499,3,Indonesia,music,indonesian bamboo flute,Which traditional Malaysian wind instrument is made from bamboo?
336
- 2502,3,Thailand,wedding,การนับสินสอดทองหมั้น,"What is Thai wedding tradition customs, once the groom's family has presented the dowry, the elders carefully check and announce the amount to all attendees?"
337
- 2514,3,Myanmar,game,ချောတိုင်တို တ င် က်,"Which cultural object in the image depicts the traditional Burmese game object, which is often coated with oil?"
338
- 2534,3,Vietnam,game,nhảy lò cò,Which part of the game area helps Vietnamese children improve balance and agility?
339
- 2535,3,Vietnam,game,nhảy lò cò,Which area refers to the Vietnamese game that involves throwing a small object into squares and hopping without stepping on lines?
340
- 2554,3,Myanmar,game,sepak takraw,Which object in the image is made from rattan and associated with the main property of traditional performance-based sports in Myanmar?
341
- 2564,3,Myanmar,music,စည်း နဲ့ဝါး နဲ့,"Which object in the image is a traditional Burmese musical instrument that produces a clear, ringing sound during folk performances?"
342
- 2565,3,Myanmar,music,စည်း နဲ့ဝါး နဲ့,Which object in the image is played alongside gongs and drums to create the signature sound of Burmese Nat Pwe ceremonies?
343
- 2605,3,Indonesia,music,indonesian gamelan,Which traditional Indonesian orchestra is deeply tied to court rituals and religious ceremonies?
344
- 2618,3,Philippines,wedding,belo wedding,Can you refer to the traditional wedding item in the image that embodies faith in divine protection for the couple’s future?
345
- 2620,3,Philippines,wedding,belo wedding,Which object in the image is draped over the bride’s head and the groom’s shoulder to represent unity and protection in marriage?
346
- 2621,3,Thailand,wedding,มงคลแฝด,What traditional Thai wedding item can be purchased from religious supply stores and is sometimes blessed by monks or priests before use?
347
- 2622,3,Thailand,wedding,มงคลแฝด,What Thai wedding object must be kept at an elevated position before use and not placed on the floor to maintain its spiritual significance?
348
- 2633,3,Indonesia,music,indonesian gong,"Which Indonesian musical instrument is made from bronze and often hung on a wooden frame, symbolizing the greatness of God?"
349
- 2647,3,Indonesia,game,permainan congklak,Which traditional Indonesian board game object is famously known to incorporate a tactical trading strategy to recoup as many items as possible?
350
- 2651,3,Indonesia,game,permainan congklak,Which traditional Indonesian game object is commonly also known as 'dakon' for its Javanese variant?
351
- 2661,3,Indonesia,dance,tari jaipongan,Which people in the image acting traditional Indonesian dance originating from West Java is infamous for its energetic and swift pace symbol?
352
- 2671,3,Indonesia,music,indonesian suling,Which melancholic and harmonic Indonesian traditional instrument stems from the contemporary ancient background?
353
- 2674,3,Indonesia,music,indonesian suling,Which traditional instrument produces expressive melodies in Indonesian gamelan orchestras?
354
- 2679,3,Thailand,wedding,ขันหมาก,What is the Thai wedding custom where the groom's family carries betel nut trays?
355
- 2681,3,Thailand,wedding,ขันหมาก,"Which cultural artifact refers to the ceremony that includes ""Phan Khan Mak Ek"" and ""Phan Khan Mak Toh""?"
356
- 2705,3,Thailand,wedding,สินสอด,What Thai wedding tradition requires the groom to present financial assets to the bride’s family as a sign of commitment?
357
- 2707,3,Indonesia,wedding,uang panai wedding,"Which object in the image represents the traditional dowry given by a man when proposing to a woman from the Bugis or Makassar tribes in South Sulawesi, a practice still followed today?"
358
- 2724,3,Myanmar,game,chinlone,"Can you identify the sport in the image where players use their feet, knees, and other parts of the body, excluding hands, to keep a rattan ball airborne?"
359
- 2736,3,Philippines,wedding,bouquet wedding,Which object in the image does the bride hold throughout the ceremony until the moment she officially marries the groom?
360
- 2739,3,Myanmar,dance,ကဗျာလွတ် လွ အက တ်,Which person showing the act of traditional Burmese dance refering to ancient literary nature?
361
- 2745,3,Myanmar,dance,ကဗျာလွတ် လွ အက တ်,Which Burmese traditional performance form allows dancers creative freedom in expression?
362
- 2764,3,Malaysia,music,malaysian gambus,"Which plucked bowl-lute chordophone, associated with Muslim identity, is played solo or in ensembles during community celebrations?"
363
- 2767,3,Malaysia,music,malaysian gambus,"Which instrument, evolved from the Arabic oud, has become a symbol of Malay traditional music?"
364
- 2775,3,Indonesia,wedding,tumpeng wedding,Which of the traditional Indonesian wedding artifact symbolizes balance and harmony in married life?
365
- 2779,3,Myanmar,music,စောင်း,"Which Burmese object in the image is played using delicate hand movements, requiring skill and precision to produce its signature melodies?"
366
- 2790,3,Myanmar,music,နှဲ,"Which object in the image is a conical shawm with a double reed, commonly used in Burmese music?"
367
- 2791,3,Myanmar,music,နှဲ,Can you refer to the traditional Burmese wind instrument in the image that features a sextuple reed made from the young leaf of the toddy palm?
368
- 2793,3,Myanmar,music,နှဲ,"Can you refer to the Burmese instrument in the image that has two variations, one used for ordinary songs and the other for grand style performances?"
369
- 2812,3,Indonesia,music,indonesian rebab,Which instrument in Malaysian music with a bow symbolizes wisdom and storytelling?
370
- 2813,3,Indonesia,music,indonesian rebab,"Which Indonesian music instrument that is associated with the spiritual healing tradition called ""Main Puteri""?"
371
- 2819,3,Indonesia,music,indonesian angklung,Which traditional shaken Indonesian instrument is easily teachable in musical education due to its diatonic scale nature?
372
- 2825,3,Indonesia,music,indonesian angklung,Which traditional Indonesian musical instrument made of bamboo has existed since the Indonesian pre-Hinduism era?
373
- 2845,3,Indonesia,wedding,siger wedding,Which women's wedding headpiece symbolizes the Pepadun nine clans in the Indonesian Pepadun tradition?
374
- 2846,3,Indonesia,wedding,siger wedding,Which Indonesian wedding accessory's name refers to the emphasis on the 'confinement' of worldly lust?
375
- 2895,3,Indonesia,game,permainan gasing,"As commonly known as traditional spinning tops game from Indonesia with variety from Java, Manado, Sumatera, and Bali, which group of objects in the image refers to them?"
376
- 2901,3,Indonesia,game,permainan gasing,Which object in the image is alternatively known as Panggal in Indonesia and famous amongst farmer's families for children's plays?
377
- 2902,3,Indonesia,game,permainan gasing,"Which object symbolizes the traditional spinning top game variant from Natuna, Indonesia?"
378
- 2925,3,Indonesia,dance,tari barong,Which of the character in this traditional Balinese dance often associated with using weapon as their battling stance?
379
- 2926,3,Indonesia,dance,tari barong,Which object in the image is the main character of the traditional Balinese Barong dance?
380
- 2928,3,Indonesia,dance,tari barong,Which character symbolises goodwill in the middle of an eternal battle in the Barong dance?
381
- 2963,3,Myanmar,game,tug-of-war,Which game characteristic in the image shows the event that is performed during the Burmese month of Tabodwe among the Rakhine people?
382
- 2996,3,Vietnam,game,đá cầu,Which game object in the image represents the Vietnamese tradition that was revived after being neglected due to war and later became a symbol of national pride?
383
- 3023,3,Philippines,wedding,barong tagalog wedding,"Which clothing in the image represents the fusion of indigenous Filipino craftsmanship and Spanish colonial influence, forming a unique cultural identity?"
384
- 3026,3,Philippines,wedding,barong tagalog wedding,Which Filipino garment in the image is traditionally made from delicate pineapple fibers and requires extensive skill and time to produce?
385
- 3027,3,Philippines,wedding,barong tagalog wedding,Which wedding garment in the image has remained unchanged in essence despite evolving fashion trends?
386
- 3037,3,Myanmar,dance,ဇာတ်ပွဲ,Which Burmese theatrical event often features performers competing for audience favor and donations?
387
- 3048,3,Indonesia,wedding,dodot wedding,Which outfit is commonly worn by the groom alongside a Kuluk (Javanese headdress)?
388
- 3064,3,Indonesia,game,permainan kelereng,Which object in the image is used in an Indonesian game that enhances hand-eye coordination and motor skills?
389
- 3075,3,Indonesia,wedding,selendang wedding,Which part of Indonesian wedding attire varies in design based on regional customs?
390
- 3083,3,Indonesia,wedding,selendang wedding,Which traditional wedding cloth is used in dances performed at Indonesian ceremonies?
391
- 3100,3,Indonesia,dance,tari legong,Which dancer in the image associated with the main character of Condong lore?
392
- 3108,3,Myanmar,game,boat racing,"Which Myanmar racing event whose object usually represents local spirits called ""Nat""?"
393
- 3116,3,Myanmar,game,boat racing,Which artifact in the image shows the Myanmar competition that historically served as a test of naval skill for warriors?
394
- 3132,3,Myanmar,music,ပလွေ,Can you refer to the instrument in the image that is used in Myanmar’s seasonal festivals to accompany traditional dances?
395
- 3136,3,Indonesia,game,permainan egrang,"Which object refers to the Indonesian pastime that challenges balance, coordination, and agility?"
396
- 3148,3,Indonesia,game,permainan egrang,Which property of the Indonesian folk game emphasizes striking a balance in the middle of the hardship of life?
397
- 3151,3,Indonesia,dance,tari kuda lumping,Which property is part of the Javanese dance sometimes accompanied by spiritual chants and ritual prayers?
398
- 3153,3,Indonesia,dance,tari kuda lumping,Which attribute of the Javanese folk dance is associated with the act of eating glass to showcase endurance during the show?
399
- 3169,3,Malaysia,music,malaysian sape,Which musical instrument has been revived through cultural education programs in Malaysia?