We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eab8884 commit fca831cCopy full SHA for fca831c
tensorflow_datasets/text/eraser_multi_rc.py
@@ -53,7 +53,7 @@
53
class EraserMultiRc(tfds.core.GeneratorBasedBuilder):
54
"""Multi Sentence Reasoning with Explanations (Eraser Benchmark)."""
55
56
- VERSION = tfds.core.Version('0.1.0')
+ VERSION = tfds.core.Version('0.1.1')
57
58
def _info(self):
59
return tfds.core.DatasetInfo(
@@ -62,7 +62,7 @@ def _info(self):
62
features=tfds.features.FeaturesDict({
63
'passage': tfds.features.Text(),
64
'query_and_answer': tfds.features.Text(),
65
- 'label': tfds.features.ClassLabel(names=['True', 'False']),
+ 'label': tfds.features.ClassLabel(names=['False', 'True']),
66
'evidences': tfds.features.Sequence(tfds.features.Text())
67
}),
68
supervised_keys=None,
0 commit comments