Keyphrase extraction is a technique in text analysis where you extract the important keyphrases from a document. Thanks to these keyphrases humans can understand the content of a text very quickly and easily without reading it completely. Keyphrase extraction was first done primarily by human annotators, who read the text in detail and then wrote down the most important keyphrases. The disadvantage is that if you work with a lot of documents, this process can take a lot of time ⏳.
Here is where Artificial Intelligence 🤖 comes in. Currently, classical machine learning methods, that use statistical and linguistic features, are widely used for the extraction process. Now with deep learning, it is possible to capture the semantic meaning of a text even better than these classical methods. Classical methods look at the frequency, occurrence and order of words in the text, whereas these neural approaches can capture long-term semantic dependencies and context of words in a text.
📓 Model Description
This model uses KBIR as its base model and fine-tunes it on the OpenKP dataset.
Keyphrase extraction models are transformer models fine-tuned as a token classification problem where each word in the document is classified as being part of a keyphrase or not.
1# Inference2text ="""
3Keyphrase extraction is a technique in text analysis where you extract the
4important keyphrases from a document. Thanks to these keyphrases humans can
5understand the content of a text very quickly and easily without reading it
6completely. Keyphrase extraction was first done primarily by human annotators,
7who read the text in detail and then wrote down the most important keyphrases.
8The disadvantage is that if you work with a lot of documents, this process
9can take a lot of time.
1011Here is where Artificial Intelligence comes in. Currently, classical machine
12learning methods, that use statistical and linguistic features, are widely used
13for the extraction process. Now with deep learning, it is possible to capture
14the semantic meaning of a text even better than these classical methods.
15Classical methods look at the frequency, occurrence and order of words
16in the text, whereas these neural approaches can capture long-term
17semantic dependencies and context of words in a text.
18""".replace("\n"," ")1920keyphrases = extractor(text)2122print(keyphrases)23
# Output
['keyphrase extraction' 'text analysis']
📚 Training Dataset
OpenKP is a large-scale, open-domain keyphrase extraction dataset with 148,124 real-world web documents along with 1-3 most relevant human-annotated keyphrases.
The documents in the dataset are already preprocessed into list of words with the corresponding labels. The only thing that must be done is tokenization and the realignment of the labels so that they correspond with the right subword tokens.
If you do not use the pipeline function, you must filter out the B and I labeled tokens. Each B and I will then be merged into a keyphrase. Finally, you need to strip the keyphrases to make sure all unnecessary spaces have been removed.
Traditional evaluation methods are the precision, recall and F1-score @k,m where k is the number that stands for the first k predicted keyphrases and m for the average amount of predicted keyphrases.
The model achieves the following results on the OpenKP test set:
Dataset
P@5
R@5
F1@5
P@10
R@10
F1@10
P@M
R@M
F1@M
OpenKP Test Set
0.12
0.33
0.17
0.06
0.33
0.10
0.35
0.33
0.31
🚨 Issues
Please feel free to start discussions in the Community Tab.