TL;DR
Keyphrase extraction (KPE) from long documents is challenging due to the limited context window of pre-trained language models (PLMs). An attention expansion mechanism was developed to enhance PLM token representations by incorporating information from surrounding text chunks.
✦ Why It Matters
Engineers can implement attention expansion to improve keyphrase extraction in long documents without high computational costs.
Key Takeaways
How It Works
Attention Expansion enhances PLM token representations by incorporating information from surrounding out-of-context text chunks. This is achieved using pre-trained word embeddings, which allows the model to capture salient keyphrase evidence that may be distributed across distant sections of a long document.
Related