@@ -32,6 +32,7 @@ repostory we release the ASQA dataset, together with the evaluation code:
32
32
* ** Versions** :
33
33
34
34
* ** ` 1.0.0 ` ** (default): Initial release.
35
+ * ` 2.0.0 ` : Sample ID goes from int32 (overflowing) to int64.
35
36
36
37
* ** Download size** : ` 17.86 MiB `
37
38
@@ -66,7 +67,7 @@ FeaturesDict({
66
67
' short_answers' : Sequence(Text(shape = (), dtype = string)),
67
68
' wikipage' : Text(shape = (), dtype = string),
68
69
}),
69
- ' sample_id' : int32 ,
70
+ ' sample_id' : int64 ,
70
71
' wikipages' : Sequence({
71
72
' title' : Text(shape = (), dtype = string),
72
73
' url' : Text(shape = (), dtype = string),
@@ -90,7 +91,7 @@ qa_pairs/context | Text | | string | Additional
90
91
qa_pairs/question | Text | | string |
91
92
qa_pairs/short_answers | Sequence(Text) | (None,) | string | List of short answers from AmbigQA.
92
93
qa_pairs/wikipage | Text | | string | Title of the Wikipedia page the additional context was taken from.
93
- sample_id | Tensor | | int32 |
94
+ sample_id | Tensor | | int64 |
94
95
wikipages | Sequence | | | List of Wikipedia pages visited by AmbigQA annotators.
95
96
wikipages/title | Text | | string | Title of the Wikipedia page.
96
97
wikipages/url | Text | | string | Link to the Wikipedia page.
0 commit comments