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 dcf1036 commit c353eadCopy full SHA for c353ead
tensorflow_datasets/datasets/asqa/asqa_dataset_builder.py
@@ -23,7 +23,7 @@
23
24
def _features():
25
return tfds.features.FeaturesDict({
26
- 'sample_id': np.int32,
+ 'sample_id': np.int64,
27
'ambiguous_question': tfds.features.Text(
28
doc='Disambiguated question from AmbigQA.'
29
),
@@ -82,6 +82,7 @@ class Builder(tfds.core.GeneratorBasedBuilder):
82
83
VERSION = tfds.core.Version('1.0.0')
84
RELEASE_NOTES = {
85
+ '2.0.0': 'Sample ID goes from int32 (overflowing) to int64.',
86
'1.0.0': 'Initial release.',
87
}
88
0 commit comments