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 T5-small model as its base model and fine-tunes it on the Inspec dataset. Keyphrase generation transformers are fine-tuned as a text-to-text generation problem where the keyphrases are generated. The result is a concatenated string with all keyphrases separated by a given delimiter (i.e. “;”). These models are capable of generating present and absent keyphrases.
✋ Intended Uses & Limitations
🛑 Limitations
This keyphrase generation model is very domain-specific and will perform very well on abstracts of scientific papers. It's not recommended to use this model for other domains, but you are free to test it out.
Only works for English documents.
Sometimes the output doesn't make any sense.
❓ How To Use
python
1# Model parameters2from transformers import(3 Text2TextGenerationPipeline,4 AutoModelForSeq2SeqLM,5 AutoTokenizer,6)789classKeyphraseGenerationPipeline(Text2TextGenerationPipeline):10def__init__(self, model, keyphrase_sep_token=";",*args,**kwargs):11super().__init__(12 model=AutoModelForSeq2SeqLM.from_pretrained(model),13 tokenizer=AutoTokenizer.from_pretrained(model),14*args,15**kwargs
16)17 self.keyphrase_sep_token = keyphrase_sep_token
1819defpostprocess(self, model_outputs):20 results =super().postprocess(21 model_outputs=model_outputs
22)23return[[keyphrase.strip()for keyphrase in result.get("generated_text").split(self.keyphrase_sep_token)if keyphrase !=""]for result in results]24
1text ="""
2Keyphrase extraction is a technique in text analysis where you extract the
3important keyphrases from a document. Thanks to these keyphrases humans can
4understand the content of a text very quickly and easily without reading it
5completely. Keyphrase extraction was first done primarily by human annotators,
6who read the text in detail and then wrote down the most important keyphrases.
7The disadvantage is that if you work with a lot of documents, this process
8can take a lot of time.
910Here is where Artificial Intelligence comes in. Currently, classical machine
11learning methods, that use statistical and linguistic features, are widely used
12for the extraction process. Now with deep learning, it is possible to capture
13the semantic meaning of a text even better than these classical methods.
14Classical methods look at the frequency, occurrence and order of words
15in the text, whereas these neural approaches can capture long-term
16semantic dependencies and context of words in a text.
17""".replace("\n"," ")1819keyphrases = generator(text)2021print(keyphrases)22
Inspec is a keyphrase extraction/generation dataset consisting of 2000 English scientific papers from the scientific domains of Computers and Control and Information Technology published between 1998 to 2002. The keyphrases are annotated by professional indexers or editors.
The documents in the dataset are already preprocessed into list of words with the corresponding keyphrases. The only thing that must be done is tokenization and joining all keyphrases into one string with a certain seperator of choice( ; ).
For the post-processing, you will need to split the string based on the keyphrase separator.
python
1defextract_keyphrases(examples):2return[example.split(keyphrase_sep_token)for example in examples]
📝 Evaluation Results
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. In keyphrase generation you also look at F1@O where O stands for the number of ground truth keyphrases.
The model achieves the following results on the Inspec test set:
Extractive keyphrases
Dataset
P@5
R@5
F1@5
P@10
R@10
F1@10
P@M
R@M
F1@M
P@O
R@O
F1@O
Inspec Test Set
0.33
0.31
0.29
0.17
0.31
0.20
0.41
0.31
0.32
0.28
0.28
0.28
Abstractive keyphrases
Dataset
P@5
R@5
F1@5
P@10
R@10
F1@10
P@M
R@M
F1@M
P@O
R@O
F1@O
Inspec Test Set
0.05
0.09
0.06
0.03
0.09
0.04
0.08
0.09
0.07
0.06
0.06
0.06
🚨 Issues
Please feel free to start discussions in the Community Tab.