@@ -32,6 +32,7 @@ repostory we release the ASQA dataset, together with the evaluation code:
3232* ** Versions** :
3333
3434 * ** ` 1.0.0 ` ** (default): Initial release.
35+ * ` 2.0.0 ` : Sample ID goes from int32 (overflowing) to int64.
3536
3637* ** Download size** : ` 17.86 MiB `
3738
@@ -66,7 +67,7 @@ FeaturesDict({
6667 ' short_answers' : Sequence(Text(shape = (), dtype = string)),
6768 ' wikipage' : Text(shape = (), dtype = string),
6869 }),
69- ' sample_id' : int32 ,
70+ ' sample_id' : int64 ,
7071 ' wikipages' : Sequence({
7172 ' title' : Text(shape = (), dtype = string),
7273 ' url' : Text(shape = (), dtype = string),
@@ -90,7 +91,7 @@ qa_pairs/context | Text | | string | Additional
9091qa_pairs/question | Text | | string |
9192qa_pairs/short_answers | Sequence(Text) | (None,) | string | List of short answers from AmbigQA.
9293qa_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 |
9495wikipages | Sequence | | | List of Wikipedia pages visited by AmbigQA annotators.
9596wikipages/title | Text | | string | Title of the Wikipedia page.
9697wikipages/url | Text | | string | Link to the Wikipedia page.
0 commit comments