bonmaklad / resumatch

Web app to extract keyphrases from a job description using NLP and score a resume. Uses Python/FastAPI for the backend and Vue for the frontend.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Resumatch

About

Resumatch is a web app to score a resume against a job description. It does this by extracting keyphrases from the job description (which can be manually fine-tuned) and calculates the percentage of keyphrases present in the resume. It also displays the keyphrases not found so that they can be added to the resume.

Demo

Tech Stack

I created this web app primarily to explore NLP (Natural Language Processing) and specifically, keyword and keyphrase extraction. The backend is developed using Python and FastAPI. It takes the job description and uses the keyphrase-vectorizers package along with KeyBERT to extract the top N keyphrases. The frontend is written in Typescript using Vue JS framework.

Alternatives Explored

Before settling on the keyphrase-vectorizers approach, I tested KeyBERT, which is a popular python package for keyphrase extraction by itself but I found the results "grammatically not quite correct". I also tested spaCy, a very popular NLP package, to extract the noun chunks but the results were not refined or targeted. The keyphrase-vectorizers package is built on spaCy and works with KeyBERT to provide more refined results as explained here.

Resources & Links

About

Web app to extract keyphrases from a job description using NLP and score a resume. Uses Python/FastAPI for the backend and Vue for the frontend.


Languages

Language:Vue 45.1%Language:TypeScript 22.0%Language:CSS 19.3%Language:Python 10.9%Language:HTML 2.6%