May 4, 2024
Banking

arXiv Keyword Extraction and Analysis Pipeline with KeyBERT and Taipy | by Kenneth Leung


Build a keyword analysis Python application comprising a frontend user interface and backend pipeline

12 min read

Apr 18, 2023

KeyBERT Taipy Kenneth Leung Data Science Machine Learning
Photo by Marylou Fortier on Unsplash

As the amount of textual data from sources like social media, customer reviews, and online platforms grows exponentially, we must be able to make sense of this unstructured data.

Keyword extraction and analysis are powerful natural language processing (NLP) techniques that enable us to achieve that.

Keyword extraction involves automatically identifying and extracting the most relevant words from a given text, while keyword analysis involves analyzing the keywords to gain insights into the underlying patterns.

In this step-by-step guide, we explore building a keyword extraction and analysis pipeline and web app on arXiv abstracts using the powerful tools of KeyBERT and Taipy.

Contents

(1) Context
(2) Tools Overview
(3) Step-by-Step Guide
(4) Wrapping it up

Here is the accompanying GitHub repo for this article.

Given the rapid progress in artificial intelligence (AI) and machine learning research, keeping track of the many papers published daily can be challenging.

Regarding such research, arXiv is undoubtedly one of the leading sources of information. arXiv (pronounced ‘archive’) is an open-access archive hosting a vast collection of scientific papers covering various disciplines like computer science, mathematics, and more.

arXiv screenshot | Image used under CC 2.0 license

One of the key features of arXiv is that it provides abstracts for each paper uploaded to its platform. These abstracts are an ideal data source as they are concise, rich in technical vocabulary, and contain domain-specific terminology.

Hence, we will utilize the latest batches of arXiv abstracts as the text data to work on in this project.

The goal is to create a web application (comprising a frontend interface and backend…



Source link

Leave a Reply

Your email address will not be published. Required fields are marked *