File size: 5,374 Bytes
58bc240
8a467e7
 
87f69ee
983fc4f
 
87f69ee
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7ca1dd2
 
983fc4f
 
 
823e19c
 
 
78a75c6
823e19c
 
78a75c6
823e19c
5a78bfa
 
 
 
 
 
 
 
 
e27098b
 
 
 
 
 
a80b453
e27098b
 
5a78bfa
 
 
 
e27098b
 
 
 
 
 
 
 
 
 
5a78bfa
 
 
 
6fa9178
78a75c6
6fa9178
78a75c6
 
 
 
 
 
 
 
 
 
 
77dd9a8
493ec4b
 
a0631d8
6dd9f1b
a0631d8
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
---
language:
- th
license: cc-by-4.0
task_categories:
- multiple-choice
dataset_info:
  features:
  - name: qn
    dtype: int64
  - name: label
    dtype: int64
  - name: pronoun
    dtype: string
  - name: quote
    dtype: string
  - name: source
    dtype: string
  - name: text
    dtype: string
  - name: options
    sequence: string
  - name: pronoun_loc
    dtype: int64
  - name: quote_loc
    dtype: int64
  splits:
  - name: test
    num_bytes: 108414
    num_examples: 285
  download_size: 36552
  dataset_size: 108414
configs:
- config_name: default
  data_files:
  - split: test
    path: data/test-*
size_categories:
- n<1K
---

# A collection of Thai Winograd Schemas
We present a collection of Winograd Schemas in the Thai language. These schemas are adapted from the original set of English Winograd Schemas proposed by [Levesque et al.](https://commonsensereasoning.org/2011/papers/Levesque.pdf), which was based on [Ernest Davis's collection](https://cs.nyu.edu/~davise/papers/WinogradSchemas/WSCollection.xml).

## Dataset Translation
Two professional translators, who were native Thai speakers fluent in English and had experience translating from English to Thai, were hired. In a pilot translation phase, one native speaker translated the first 85 sentences. Based on a qualitative analysis of these 85 sentences, guidelines were provided for a second native speaker to translate the remaining 200 sentences. In total, 285 sentences were translated from English to Thai. Translation guidelines were provided, instructing them to adapt names and contexts to suit the Thai language while preserving the ambiguity and nuances of the original schema. The translators were also asked to mark any translated names and translations they were unsure about, so that the validator in the next step could pay extra attention to those instances. For example, in \autoref{fig:example}, the names Paul and George were changed to Mana and Piti, respectively, adapting the names to better suit the Thai context while preserving the essence of the original content.

## Dataset Validation
The translated Winograd Schemas were reviewed with three native Thai speakers, and final adjustments were made to ensure clarity. A validator was provided with the translations and tasked with identifying any potential issues. They were instructed to pay closer attention to the text marked by the translators, which included changes to names and translations that the translators were unsure about. Based on the validator’s feedback, final adjustments to the translations were made, and typographical errors were corrected. Furthermore, the dataset will be made publicly available\footnote{A link to the dataset will be added in the de-anonymized version.}, inviting other native Thai speakers to verify it and suggest any necessary adjustments.

# Dataset Structure

### Data Instances

Each instance contains a text passage with a designated pronoun and two possible answers indicating which entity in
the passage the pronoun represents. An example instance looks like the following:

```python
{
  'qn': 0,
  'label': 0,
  'pronoun': 'พวกเขา',
  'quote': 'พวกเขากลัวความรุนแรง',
  'source': '(Winograd 1972)',
  'text': 'สมาชิกสภาเทศบาลเมืองปฏิเสธใบอนุญาตผู้ชุมนุมเพราะพวกเขากลัวความรุนแรง'
  'options': ('สมาชิกสภาเทศบาลเมือง', 'ผู้ชุมนุม'),
  'pronoun_loc': 48,
  'quote_loc': 48
}
 ```

### Data Fields

- `qn` (int): The number of the question based on [winograd_wsc285](https://huggingface.co/datasets/winograd_wsc)
- `label` (int): The index of the correct option in the `options` field
- `pronoun` (str): The pronoun in the sequence to be resolved
- `quote` (str): The substr with the key action or context surrounding the pronoun
- `source` (str): A description of the source who contributed the example
- `text` (str): The text sequence
- `options` (tuple[str]): The two entity options that the pronoun may be referring to
- `pronoun_loc` (int): The starting position of the pronoun in the sequence
- `quote_loc` (int): The starting position of the quote in the sequence

### Data Splits
Only a test split is included.

# Evaluation
## Model Accuracy in English and Thai

| Model           | Accuracy (English) | Accuracy (Thai) |
|-----------------|--------------------|-----------------|
| Typhoon         | 64.56%             | 54.04%          |
| Claude-3-Haiku  | 62.81%             | 51.58%          |
| Claude-3-Sonnet | 80.70%             | 63.51%          |
| Claude-3-Opus   | 92.63%             | 77.54%          |
| GPT-3.5         | 71.93%             | 51.23%          |
| GPT-4           | 93.68%             | 72.28%          |
| Human           | 90%                | -%              |

**Table 1: Accuracy vs. Model in English and Thai**
## Acknowledgement 
We extend our gratitude to Chanikarn Inthongpan and Korakoch Rienmek, who translated the schemas into the Thai language. We would also like to thank Sakrapee Namsak and Chonnawit Khumchoo for validating the translated Thai dataset.

Dataset Curated and Maintained by Phakphum Artkaew

Any comments or concerns can be reached at pa2497@nyu.edu