Datasets:

Modalities:
Text
Formats:
parquet
Libraries:
Datasets
pandas
License:
ianporada commited on
Commit
1a91ed6
·
verified ·
1 Parent(s): 2657459

Upload dataset

Browse files
README.md CHANGED
@@ -1,5 +1,37 @@
1
  ---
2
  license: unknown
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
4
 
5
  # "definite_pronoun_resolution" (dpr)
 
1
  ---
2
  license: unknown
3
+ dataset_info:
4
+ config_name: plain_text
5
+ features:
6
+ - name: sentence
7
+ dtype: string
8
+ - name: pronoun
9
+ dtype: string
10
+ - name: candidates
11
+ sequence: string
12
+ length: 2
13
+ - name: label
14
+ dtype:
15
+ class_label:
16
+ names:
17
+ '0': '0'
18
+ '1': '1'
19
+ splits:
20
+ - name: test
21
+ num_bytes: 71679
22
+ num_examples: 564
23
+ - name: train
24
+ num_bytes: 171499
25
+ num_examples: 1322
26
+ download_size: 106997
27
+ dataset_size: 243178
28
+ configs:
29
+ - config_name: plain_text
30
+ data_files:
31
+ - split: test
32
+ path: plain_text/test-*
33
+ - split: train
34
+ path: plain_text/train-*
35
  ---
36
 
37
  # "definite_pronoun_resolution" (dpr)
dataset_infos.json CHANGED
@@ -1 +1,64 @@
1
- {"plain_text": {"description": "Composed by 30 students from one of the author's undergraduate classes. These\nsentence pairs cover topics ranging from real events (e.g., Iran's plan to\nattack the Saudi ambassador to the U.S.) to events/characters in movies (e.g.,\nBatman) and purely imaginary situations, largely reflecting the pop culture as\nperceived by the American kids born in the early 90s. Each annotated example\nspans four lines: the first line contains the sentence, the second line contains\nthe target pronoun, the third line contains the two candidate antecedents, and\nthe fourth line contains the correct antecedent. If the target pronoun appears\nmore than once in the sentence, its first occurrence is the one to be resolved.\n", "citation": "@inproceedings{rahman2012resolving,\n title={Resolving complex cases of definite pronouns: the winograd schema challenge},\n author={Rahman, Altaf and Ng, Vincent},\n booktitle={Proceedings of the 2012 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning},\n pages={777--789},\n year={2012},\n organization={Association for Computational Linguistics}\n}", "homepage": "http://www.hlt.utdallas.edu/~vince/data/emnlp12/", "license": "", "features": {"sentence": {"dtype": "string", "id": null, "_type": "Value"}, "pronoun": {"dtype": "string", "id": null, "_type": "Value"}, "candidates": {"feature": {"dtype": "string", "id": null, "_type": "Value"}, "length": 2, "id": null, "_type": "Sequence"}, "label": {"num_classes": 2, "names": ["0", "1"], "names_file": null, "id": null, "_type": "ClassLabel"}}, "post_processed": null, "supervised_keys": {"input": "sentence", "output": "label"}, "task_templates": null, "builder_name": "definite_pronoun_resolution", "config_name": "plain_text", "version": {"version_str": "1.0.0", "description": "", "major": 1, "minor": 0, "patch": 0}, "splits": {"test": {"name": "test", "num_bytes": 71691, "num_examples": 564, "dataset_name": "definite_pronoun_resolution"}, "train": {"name": "train", "num_bytes": 171511, "num_examples": 1322, "dataset_name": "definite_pronoun_resolution"}}, "download_checksums": {"https://s3.amazonaws.com/datasets.huggingface.co/definite_pronoun_resolution/train.c.txt": {"num_bytes": 160408, "checksum": "c310158d0cbac1a556e3284e6c167f4478271d8d50b0b9d15dfe428c905a0867"}, "https://s3.amazonaws.com/datasets.huggingface.co/definite_pronoun_resolution/test.c.txt": {"num_bytes": 67044, "checksum": "cf1cf025e1d59a5b363e6dcfbd5a13aae8a9830831ac16fd7f865aca7a1559d8"}}, "download_size": 227452, "post_processing_size": null, "dataset_size": 243202, "size_in_bytes": 470654}}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "plain_text": {
3
+ "description": "Composed by 30 students from one of the author's undergraduate classes. These\nsentence pairs cover topics ranging from real events (e.g., Iran's plan to\nattack the Saudi ambassador to the U.S.) to events/characters in movies (e.g.,\nBatman) and purely imaginary situations, largely reflecting the pop culture as\nperceived by the American kids born in the early 90s. Each annotated example\nspans four lines: the first line contains the sentence, the second line contains\nthe target pronoun, the third line contains the two candidate antecedents, and\nthe fourth line contains the correct antecedent. If the target pronoun appears\nmore than once in the sentence, its first occurrence is the one to be resolved.\n",
4
+ "citation": "@inproceedings{rahman2012resolving,\n title={Resolving complex cases of definite pronouns: the winograd schema challenge},\n author={Rahman, Altaf and Ng, Vincent},\n booktitle={Proceedings of the 2012 Joint Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning},\n pages={777--789},\n year={2012},\n organization={Association for Computational Linguistics}\n}",
5
+ "homepage": "http://www.hlt.utdallas.edu/~vince/data/emnlp12/",
6
+ "license": "",
7
+ "features": {
8
+ "sentence": {
9
+ "dtype": "string",
10
+ "_type": "Value"
11
+ },
12
+ "pronoun": {
13
+ "dtype": "string",
14
+ "_type": "Value"
15
+ },
16
+ "candidates": {
17
+ "feature": {
18
+ "dtype": "string",
19
+ "_type": "Value"
20
+ },
21
+ "length": 2,
22
+ "_type": "Sequence"
23
+ },
24
+ "label": {
25
+ "names": [
26
+ "0",
27
+ "1"
28
+ ],
29
+ "_type": "ClassLabel"
30
+ }
31
+ },
32
+ "supervised_keys": {
33
+ "input": "sentence",
34
+ "output": "label"
35
+ },
36
+ "builder_name": "dpr_raw",
37
+ "dataset_name": "dpr_raw",
38
+ "config_name": "plain_text",
39
+ "version": {
40
+ "version_str": "1.0.0",
41
+ "description": "",
42
+ "major": 1,
43
+ "minor": 0,
44
+ "patch": 0
45
+ },
46
+ "splits": {
47
+ "test": {
48
+ "name": "test",
49
+ "num_bytes": 71679,
50
+ "num_examples": 564,
51
+ "dataset_name": null
52
+ },
53
+ "train": {
54
+ "name": "train",
55
+ "num_bytes": 171499,
56
+ "num_examples": 1322,
57
+ "dataset_name": null
58
+ }
59
+ },
60
+ "download_size": 106997,
61
+ "dataset_size": 243178,
62
+ "size_in_bytes": 350175
63
+ }
64
+ }
plain_text/test-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:265c839584a93a59ad0b90647775bdd0c203968da23066aa712314c14e9b630d
3
+ size 32221
plain_text/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f149f1b00e5a8b193f704237f5870bae18812bca9f90431eccd5d99d829e4974
3
+ size 74776