Datasets:

Modalities:
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
ianporada commited on
Commit
6513442
·
verified ·
1 Parent(s): 8664f35

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +37 -60
README.md CHANGED
@@ -1,62 +1,39 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: genre
7
- dtype: string
8
- - name: text
9
- dtype: string
10
- - name: sentences
11
- list:
12
- - name: id
13
- dtype: int64
14
- - name: speaker
15
- dtype: 'null'
16
- - name: text
17
- dtype: string
18
- - name: tokens
19
- list:
20
- - name: deprel
21
- dtype: string
22
- - name: feats
23
- dtype: string
24
- - name: head
25
- dtype: int64
26
- - name: id
27
- sequence: int64
28
- - name: lemma
29
- dtype: string
30
- - name: misc
31
- dtype: string
32
- - name: text
33
- dtype: string
34
- - name: upos
35
- dtype: string
36
- - name: xpos
37
- dtype: string
38
- - name: coref_chains
39
- sequence:
40
- sequence:
41
- sequence: int64
42
- - name: meta_data
43
- struct:
44
- - name: comment
45
- dtype: string
46
- splits:
47
- - name: train
48
- num_bytes: 77768001
49
- num_examples: 36034
50
- - name: validation
51
- num_bytes: 2446920
52
- num_examples: 1117
53
- download_size: 10993316
54
- dataset_size: 80214921
55
- configs:
56
- - config_name: default
57
- data_files:
58
- - split: train
59
- path: data/train-*
60
- - split: validation
61
- path: data/validation-*
62
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
4
+
5
+ # Wingrande Recast as Coreference Resolution
6
+
7
+ ### Dataset Summary
8
+
9
+ WinoGrande train and development sets recast as coreference resolution as described in [Investigating Failures to Generalize for Coreference Resolution Models](https://arxiv.org/abs/2303.09092). Conllu columns are parsed using Stanza.
10
+
11
+ ### Data Fields
12
+
13
+ ```python
14
+ {
15
+ "doc_name": doc_name, # document name
16
+ "sentences": sentences, # list of sentences, each sentence is a list of conllu lines
17
+ "coref_chains": coref_chains, # list of clusters, each cluster is a list of mentions of form [sent, start, end] inclusive
18
+ }
19
+ ```
20
+
21
+ ### Citation Information
22
+
23
+ ```
24
+ @misc{porada2023investigating,
25
+ title={Investigating Failures to Generalize for Coreference Resolution Models},
26
+ author={Ian Porada and Alexandra Olteanu and Kaheer Suleman and Adam Trischler and Jackie Chi Kit Cheung},
27
+ year={2023},
28
+ eprint={2303.09092},
29
+ archivePrefix={arXiv},
30
+ primaryClass={cs.CL}
31
+ }
32
+
33
+ @InProceedings{ai2:winogrande,
34
+ title = {WinoGrande: An Adversarial Winograd Schema Challenge at Scale},
35
+ authors={Keisuke, Sakaguchi and Ronan, Le Bras and Chandra, Bhagavatula and Yejin, Choi
36
+ },
37
+ year={2019}
38
+ }
39
+ ```