pakphum commited on
Commit
e27098b
1 Parent(s): 27d2b9e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -16
README.md CHANGED
@@ -24,26 +24,29 @@ the passage the pronoun represents. An example instance looks like the following
24
 
25
  ```python
26
  {
27
- 'QN': 0,
28
- 'Label': 0,
29
- 'Option 0': 'สมาชิกสภาเทศบาลเมือง',
30
- 'Option 1': 'ผู้ชุมนุม',
31
- 'Pronoun': 'พวกเขา',
32
- 'Quote': 'พวกเขากลัวความรุนแรง',
33
- 'Source': '(Winograd 1972)',
34
- 'Text': 'สมาชิกสภาเทศบาลเมืองปฏิเสธใบอนุญาตผู้ชุมนุมเพราะพวกเขากลัวความรุนแรง'
 
35
  }
36
  ```
37
 
38
  ### Data Fields
39
- - `QN` (int): The number of the question based on [winograd_wsc285](https://huggingface.co/datasets/winograd_wsc)
40
- - `Label` (int): The correct option
41
- - `Text` (str): The text sequence
42
- - `Option 0` (str): The one of the two entity options that the pronoun may be referring to
43
- - `Option 1` (str): The one of two entity options that the pronoun may be referring to
44
- - `Pronoun` (str): The pronoun in the sequence to be resolved
45
- - `Quote` (str): The substr with the key action or context surrounding the pronoun
46
- - `Source` (str): A description of the source who contributed the example
 
 
47
 
48
  ### Data Splits
49
  Only a test split is included.
 
24
 
25
  ```python
26
  {
27
+ 'qn': 0,
28
+ 'label': 0,
29
+ 'pronoun': 'พวกเขา',
30
+ 'quote': 'พวกเขากลัวความรุนแรง',
31
+ 'source': '(Winograd 1972)',
32
+ 'text': 'สมาชิกสภาเทศบาลเมืองปฏิเสธใบอนุญาตผู้ชุมนุมเพราะพวกเขากลัวความรุนแรง'
33
+ 'options': 'สมาชิกสภาเทศบาลเมือง',
34
+ 'pronoun_loc': 48,
35
+ 'quote_loc': 48
36
  }
37
  ```
38
 
39
  ### Data Fields
40
+
41
+ - `qn` (int): The number of the question based on [winograd_wsc285](https://huggingface.co/datasets/winograd_wsc)
42
+ - `label` (int): The index of the correct option in the `options` field
43
+ - `pronoun` (str): The pronoun in the sequence to be resolved
44
+ - `quote` (str): The substr with the key action or context surrounding the pronoun
45
+ - `source` (str): A description of the source who contributed the example
46
+ - `text` (str): The text sequence
47
+ - `options` (tuple[str]): The two entity options that the pronoun may be referring to
48
+ - `pronoun_loc` (int): The starting position of the pronoun in the sequence
49
+ - `quote_loc` (int): The starting position of the quote in the sequence
50
 
51
  ### Data Splits
52
  Only a test split is included.