bzantium commited on
Commit
72893c1
·
verified ·
1 Parent(s): ca362ba

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +68 -0
README.md ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ language:
4
+ - ko
5
+ task_categories:
6
+ - multiple-choice
7
+ tags:
8
+ - Korean
9
+ - Culture
10
+ - Language
11
+ size_categories:
12
+ - 1K<n<10K
13
+ configs:
14
+ - config_name: default
15
+ data_files:
16
+ - split: test
17
+ path: test.jsonl
18
+ ---
19
+
20
+ # CLIcK (Cultural and Linguistic Intelligence in Korean)
21
+
22
+ Mirror of the original [CLIcK](https://github.com/rladmstn1714/CLIcK) benchmark (LREC-COLING 2024, [paper](https://arxiv.org/abs/2403.06412)) with the per-item subcategory and broad-category labels preserved.
23
+
24
+ The upstream HuggingFace mirror at [`EunsuKim/CLIcK`](https://huggingface.co/datasets/EunsuKim/CLIcK) flattens every item into a single split and drops the category metadata that the paper uses. This mirror restores those labels by pulling each per-subcategory JSON file directly from the canonical GitHub repo and tagging each item with its source subcategory.
25
+
26
+ ## Fields
27
+
28
+ | Field | Type | Description |
29
+ | --- | --- | --- |
30
+ | `id` | str | Original CLIcK id (e.g. `KIIP_society_1`). Not unique on its own: 8 ids appear in two subcategories with different questions. |
31
+ | `paragraph` | str | Optional context paragraph; empty for most items. |
32
+ | `question` | str | Question stem. |
33
+ | `choices` | list[str] | 4 or 5 answer options. |
34
+ | `answer` | str | The literal text of the correct option (one of `choices`). |
35
+ | `subcategory` | str | One of 11 fine-grained subcategories (8 Culture + 3 Language). |
36
+ | `broad_category` | str | `Culture` or `Language`. |
37
+ | `source_file` | str | The original GitHub `.json` file name (e.g. `Society_KIIP.json`). |
38
+
39
+ ## Subcategory distribution
40
+
41
+ | Subcategory | # items | Broad |
42
+ | --- | ---: | --- |
43
+ | Korean Society | 309 | Culture |
44
+ | Textual | 285 | Language |
45
+ | Korean History | 280 | Culture |
46
+ | Grammar | 232 | Language |
47
+ | Korean Tradition | 222 | Culture |
48
+ | Korean Law | 219 | Culture |
49
+ | Functional | 133 | Language |
50
+ | Korean Geography | 131 | Culture |
51
+ | Korean Politics | 84 | Culture |
52
+ | Korean Economy | 59 | Culture |
53
+ | Korean Popular | 41 | Culture |
54
+ | **Total** | **1995** | |
55
+
56
+ ## Citation
57
+
58
+ ```bibtex
59
+ @inproceedings{kim-etal-2024-click,
60
+ title = "{CL}{I}c{K}: A Benchmark Dataset of Cultural and Linguistic Intelligence in {K}orean",
61
+ author = "Kim, Eunsu and Suk, Juyoung and Oh, Philhoon and Yoo, Haneul and Thorne, James and Oh, Alice",
62
+ booktitle = "Proceedings of LREC-COLING 2024",
63
+ year = "2024",
64
+ url = "https://arxiv.org/abs/2403.06412",
65
+ }
66
+ ```
67
+
68
+ All credit for the questions and answers goes to the original authors. This mirror only adds the subcategory labels that already exist in the upstream GitHub repo's directory layout.