castorini/triviaqa_gar-t5_expansions
收藏资源简介:
该数据集提供了使用gar-T5模型对Trivia QA语料库的答案、标题和句子进行扩展的结果。数据集包含开发集(dev)和测试集(test),每个集合的数据条目包括ID、预测答案、预测标题和预测句子。
This dataset presents the results of expanding answers, titles, and sentences sourced from the Trivia QA corpus using the gar-T5 model. It consists of a development set (dev) and a test set, where each data entry in both sets includes an ID, a predicted answer, a predicted title, and a predicted sentence.
数据集概述
数据集内容
- 本数据集提供了Trivia QA语料库的答案、标题和句子扩展,使用模型gar-T5进行处理。
数据集结构
- 数据集分为
dev和test两个部分。
数据样本结构
-
dev部分样本示例: json { "id": "1", "predicted_answers": ["Bz"], "predicted_titles": ["Vehicle registration plates of Belize *** Vehicle registration plate"], "predicted_sentences": ["The international code for Belize is ""BZ""."] }
-
test部分样本示例: json { "id": "1", "predicted_answers": ["Taurus"], "predicted_titles": ["Jamie Lee Curtis *** Under the Tuscan Sun *** Angels (Jamie Lee Curtis song) *** Under the Tuscan Sun (film) *** John Michael King *** Robert Earl *** Henry Jones, Sr. *** Jamie Lee (singer) *** Under the Tuscan Sun (1974 film) *** Richard Benjamin"], "predicted_sentences": ["In July 2007, several news outlets reported that the couple had quietly married in December 2007, and that Curtis had taken a liking to one another, sharing ""sweet nothings"" about their relationship."] }
数据集加载示例
python data_files = {"dev":"dev/dev.jsonl", "test": "test/test.jsonl"} dataset = load_dataset(castorini/triviaqa_gar-t5_expansions)




