Chenghao Yang
commited on
Commit
·
bcf34eb
1
Parent(s):
c967474
add original data
Browse files- original/.gitattributes +0 -0
- quality.py +9 -1
original/.gitattributes
ADDED
File without changes
|
quality.py
CHANGED
@@ -59,7 +59,15 @@ class Quality(datasets.GeneratorBasedBuilder):
|
|
59 |
description=f"Using DPR (NYU-version) to summarize rest {x * 5}% of the document within {maxlen} max tokens"
|
60 |
) for x in range(0, 20)
|
61 |
] for maxlen in [25, 50, 100, 150]
|
62 |
-
]))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
# + [
|
65 |
# QualityConfig(
|
|
|
59 |
description=f"Using DPR (NYU-version) to summarize rest {x * 5}% of the document within {maxlen} max tokens"
|
60 |
) for x in range(0, 20)
|
61 |
] for maxlen in [25, 50, 100, 150]
|
62 |
+
])) + [
|
63 |
+
QualityConfig(
|
64 |
+
name=f"original",
|
65 |
+
features=['question', "context", "output"],
|
66 |
+
data_url=f"original/original.zip",
|
67 |
+
citation=_QUALITY_CITATION,
|
68 |
+
description=f"original QuALITY data"
|
69 |
+
),
|
70 |
+
]
|
71 |
|
72 |
# + [
|
73 |
# QualityConfig(
|