adding README
Browse files
README.md
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
annotations_creators:
|
3 |
+
- unknown
|
4 |
+
language_creators:
|
5 |
+
- unknown
|
6 |
+
languages:
|
7 |
+
- en
|
8 |
+
licenses:
|
9 |
+
- unknown
|
10 |
+
multilinguality:
|
11 |
+
- monolingual
|
12 |
+
task_categories:
|
13 |
+
- text-mining
|
14 |
+
- text-generation
|
15 |
+
task_ids:
|
16 |
+
- keyphrase-generation
|
17 |
+
- keyphrase-extraction
|
18 |
+
size_categories:
|
19 |
+
- 1k<n<10k
|
20 |
+
pretty_name: PubMed
|
21 |
+
---
|
22 |
+
# Schutz 2008 PubMed dataset for keyphrase extraction
|
23 |
+
## About
|
24 |
+
|
25 |
+
This dataset is made of 1320 articles with full text and author assigned keyphrases.
|
26 |
+
|
27 |
+
Details about the dataset can be found in the original paper:
|
28 |
+
Keyphrase extraction from single documents in the open domain exploiting linguistic and statistical methods. Alexander Thorsten Schutz. Master's thesis, National University of Ireland (2008).
|
29 |
+
|
30 |
+
|
31 |
+
Reference (indexer-assigned) keyphrases are also categorized under the PRMU (<u>P</u>resent-<u>R</u>eordered-<u>M</u>ixed-<u>U</u>nseen) scheme as proposed in the following paper:
|
32 |
+
- Florian Boudin and Ygor Gallina. 2021.
|
33 |
+
[Redefining Absent Keyphrases and their Effect on Retrieval Effectiveness](https://aclanthology.org/2021.naacl-main.330/).
|
34 |
+
In Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, pages 4185–4193, Online. Association for Computational Linguistics.
|
35 |
+
|
36 |
+
Text pre-processing (tokenization) is carried out using spacy (en_core_web_sm model) with a special rule to avoid splitting words with hyphens (e.g. graph-based is kept as one token). Stemming (Porter's stemmer implementation provided in nltk) is applied before reference keyphrases are matched against the source text.
|
37 |
+
|
38 |
+
## Content
|
39 |
+
|
40 |
+
The dataset is divided into the following three splits:
|
41 |
+
|
42 |
+
| Split | # documents | # keyphrases by document (average) | % Present | % Reordered | % Mixed | % Unseen |
|
43 |
+
| :--------- | ----------: | -----------: | --------: | ----------: | ------: | -------: |
|
44 |
+
| Test | 1320 | 5.40 | 84.54 | 9.14 | 3.84 | 2.47 |
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
The following data fields are available:
|
49 |
+
- **id**: unique identifier of the document.
|
50 |
+
- **title**: title of the document.
|
51 |
+
- **text**: full article minus the title.
|
52 |
+
- **keyphrases**: list of reference keyphrases.
|
53 |
+
- **prmu**: list of <u>P</u>resent-<u>R</u>eordered-<u>M</u>ixed-<u>U</u>nseen categories for reference keyphrases.
|
54 |
+
|
55 |
+
**NB**: The present keyphrases (represented by the "P" label in the PRMU column) are sorted by their apparition order in the text (title + abstract).
|
56 |
+
|