midas/citeulike180
收藏资源简介:
该数据集用于评估从长文档英文科学文章中提取和生成关键词的技术。数据集包含文档的唯一标识符、文档内容、文档的BIO标签、提取的关键词和生成的关键词。数据分割部分仅包含测试集,共有182个数据点。
This dataset is designed to evaluate techniques for keyword extraction and generation from long-form English scientific articles. It includes the unique identifier of each document, the document content, the document's BIO tags, the extracted keywords, and the generated keywords. The data split only contains the test set, with a total of 182 data points.
数据集概述
数据集名称
Citeulike180
数据集目的
用于评估和比较长文档英文科学文章中的关键短语提取和生成技术。
数据集结构
数据字段
- id: 文档的唯一标识符。
- document: 文档中的单词列表,以空格分隔。
- doc_bio_tags: 文档中每个单词的BIO标签,其中B表示关键短语的开始,I表示关键短语内部,O表示不属于关键短语的单词。
- extractive_keyphrases: 文档中实际存在的关键短语列表。
- abstractive_keyphrases: 文档中不存在但可能相关的关键短语列表。
数据分割
- Test: 182个数据点。
数据集使用
数据集可以通过以下方式加载: python from datasets import load_dataset
加载整个数据集
dataset = load_dataset("midas/citeulike180", "raw")
引用信息
@inproceedings{medelyan-etal-2009-human, title = "Human-competitive tagging using automatic keyphrase extraction", author = "Medelyan, Olena and Frank, Eibe and Witten, Ian H.", booktitle = "Proceedings of the 2009 Conference on Empirical Methods in Natural Language Processing", month = aug, year = "2009", address = "Singapore", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/D09-1137", pages = "1318--1327", }




