Update README.md
Browse files
README.md
CHANGED
@@ -12,7 +12,7 @@ tags:
|
|
12 |
### Introduction
|
13 |
Generalized quantifiers (e.g., few, most) are used to indicate the proportions predicates are satisfied. QuRe is quantifier reasoning dataset from [Pragmatic Reasoning Unlocks Quantifier Semantics for Foundation Models](https://arxiv.org/pdf/2311.04659). It includes real-world sentences from Wikipedia and human annotations of generalized quantifiers from English speakers.
|
14 |
|
15 |
-
###
|
16 |
```
|
17 |
{
|
18 |
"orig_sentence": "In order for a steel to be considered stainless it must have a Chromium content of at least 10.5%.",
|
@@ -36,6 +36,13 @@ Generalized quantifiers (e.g., few, most) are used to indicate the proportions p
|
|
36 |
* specificity: the difficulty of deciphering the percentage scope of the quantifier from the sentence excluding the quantifier.
|
37 |
* wiki_entity: the wikipedia entity that includes <i>orig_sentence</i> in the wikipage content.
|
38 |
* topics: sentence topics.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
### Reference
|
41 |
```
|
|
|
12 |
### Introduction
|
13 |
Generalized quantifiers (e.g., few, most) are used to indicate the proportions predicates are satisfied. QuRe is quantifier reasoning dataset from [Pragmatic Reasoning Unlocks Quantifier Semantics for Foundation Models](https://arxiv.org/pdf/2311.04659). It includes real-world sentences from Wikipedia and human annotations of generalized quantifiers from English speakers.
|
14 |
|
15 |
+
### Sample
|
16 |
```
|
17 |
{
|
18 |
"orig_sentence": "In order for a steel to be considered stainless it must have a Chromium content of at least 10.5%.",
|
|
|
36 |
* specificity: the difficulty of deciphering the percentage scope of the quantifier from the sentence excluding the quantifier.
|
37 |
* wiki_entity: the wikipedia entity that includes <i>orig_sentence</i> in the wikipage content.
|
38 |
* topics: sentence topics.
|
39 |
+
|
40 |
+
### Document
|
41 |
+
```
|
42 |
+
from datasets import load_dataset
|
43 |
+
|
44 |
+
ds = load_dataset("billli/QuRe")
|
45 |
+
```
|
46 |
|
47 |
### Reference
|
48 |
```
|