Datasets:

Modalities:
Text
Formats:
parquet
Languages:
Indonesian
Size:
< 1K
ArXiv:
Libraries:
Datasets
pandas
License:
raileymontalan commited on
Commit
55ecea7
·
verified ·
1 Parent(s): 8935cf6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +112 -46
README.md CHANGED
@@ -1,46 +1,112 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: label
7
- dtype: string
8
- - name: prompts
9
- list:
10
- - name: sentence_pair
11
- dtype: string
12
- - name: prompt_templates
13
- sequence: string
14
- - name: metadata
15
- struct:
16
- - name: language
17
- dtype: string
18
- - name: linguistic_phenomenon
19
- dtype: string
20
- - name: category
21
- dtype: string
22
- - name: subcategory
23
- dtype: string
24
- - name: correct
25
- dtype: string
26
- - name: wrong
27
- dtype: string
28
- - name: shuffled
29
- dtype: bool
30
- splits:
31
- - name: id
32
- num_bytes: 206209
33
- num_examples: 380
34
- - name: id_fewshot
35
- num_bytes: 612
36
- num_examples: 5
37
- download_size: 42471
38
- dataset_size: 206821
39
- configs:
40
- - config_name: default
41
- data_files:
42
- - split: id
43
- path: data/id-*
44
- - split: id_fewshot
45
- path: data/id_fewshot-*
46
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: LINDSEA Syntax
3
+ license:
4
+ - cc-by-4.0
5
+ task_categories:
6
+ - text-generation
7
+ - text-classification
8
+ language:
9
+ - id
10
+ dataset_info:
11
+ features:
12
+ - name: id
13
+ dtype: string
14
+ - name: label
15
+ dtype: string
16
+ - name: prompts
17
+ list:
18
+ - name: sentence_pair
19
+ dtype: string
20
+ - name: prompt_templates
21
+ sequence: string
22
+ - name: metadata
23
+ struct:
24
+ - name: language
25
+ dtype: string
26
+ - name: linguistic_phenomenon
27
+ dtype: string
28
+ - name: category
29
+ dtype: string
30
+ - name: subcategory
31
+ dtype: string
32
+ - name: correct
33
+ dtype: string
34
+ - name: wrong
35
+ dtype: string
36
+ - name: shuffled
37
+ dtype: bool
38
+ splits:
39
+ - name: id
40
+ num_bytes: 206209
41
+ num_examples: 380
42
+ num_tokens_gpt_4o: 9493
43
+ num_tokens_gemma_2: 9273
44
+ num_tokens_llama_3: 11293
45
+ - name: id_fewshot
46
+ num_bytes: 612
47
+ num_examples: 5
48
+ num_tokens_gpt_4o: 112
49
+ num_tokens_gemma_2: 116
50
+ num_tokens_llama_3: 130
51
+ download_size: 42471
52
+ dataset_size: 206821
53
+ total_tokens_gpt_4o: 9605
54
+ total_tokens_gemma_2: 9389
55
+ total_tokens_llama_3: 11423
56
+ configs:
57
+ - config_name: default
58
+ data_files:
59
+ - split: id
60
+ path: data/id-*
61
+ - split: id_fewshot
62
+ path: data/id_fewshot-*
63
+ size_categories:
64
+ - n<1K
65
+ ---
66
+
67
+ # LINDSEA Syntax
68
+
69
+ LINDSEA Syntax is a linguistic diagnostic from [BHASA](https://arxiv.org/abs/2309.06085) that evaluates a model's understanding of linguistic phenomena, syntax in particular, for Indonesian.
70
+
71
+ ### Supported Tasks and Leaderboards
72
+
73
+ LINDSEA Syntax is designed for evaluating chat or instruction-tuned large language models (LLMs).
74
+
75
+ ### Languages
76
+ - Indonesian (id)
77
+
78
+ ### Dataset Details
79
+ LINDSEA Syntax only has an Indonesian (id) split, with additional splits containing fewshot examples. Below are the statistics for this dataset. The number of tokens only refer to the strings of text found within the `prompts` column.
80
+
81
+ | Split | # of examples | # of GPT-4o tokens | # of Gemma 2 tokens | # of Llama 3 tokens |
82
+ |-|:-|:-|:-|:-|
83
+ | id | 380 | 9493 | 9273 | 11293 |
84
+ | id_fewshot | 5 | 112 | 116 | 130 |
85
+ | **total** | 385 | 9605 | 9389 | 11423 |
86
+
87
+ ### Data Sources
88
+
89
+ | Data Source | License | Language/s | Split/s
90
+ |-|:-|:-| :-|
91
+ | [BHASA](https://arxiv.org/abs/2309.06085) | [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) | Indonesian | id, id_fewshot
92
+
93
+ ### License
94
+
95
+ For the license/s of the dataset/s, please refer to the data sources table above.
96
+
97
+ We endeavor to ensure data used is permissible and have chosen datasets from creators who have processes to exclude copyrighted or disputed data.
98
+
99
+
100
+ ### References
101
+
102
+ ```bibtex
103
+ @misc{leong2023bhasaholisticsoutheastasian,
104
+ title={BHASA: A Holistic Southeast Asian Linguistic and Cultural Evaluation Suite for Large Language Models},
105
+ author={Wei Qi Leong and Jian Gang Ngui and Yosephine Susanto and Hamsawardhini Rengarajan and Kengatharaiyer Sarveswaran and William Chandra Tjhi},
106
+ year={2023},
107
+ eprint={2309.06085},
108
+ archivePrefix={arXiv},
109
+ primaryClass={cs.CL},
110
+ url={https://arxiv.org/abs/2309.06085},
111
+ }
112
+ ```