Skip to content

An updated version of Resume Rankmatching. Uses some pretty cool techniques like ensemble learning, and more!

Notifications You must be signed in to change notification settings

siddheshtv/resume_ner_rankmatchV2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Resume Scoring API

This is a Flask-based API that scores resumes based on their similarity to a provided job description. The API uses various similarity metrics, including TF-IDF, Sentence Transformer, Levenshtein, Euclidean distance, Spacy, and Simhash to calculate an ensemble score for each resume.

Requirements

Python 3.6 or later
Flask
PyPDF2
nltk
pdfplumber
sentence-transformers
spacy
simhash
pdf2image (optional, for PDF image extraction)

Setup

  1. Clone this repository to your local machine.

  2. Create a virtual environment and activate it:

python3 -m venv venv
source venv/bin/activate   # On Windows: venv\Scripts\activate
  1. Install the required dependencies:
pip install -r requirements.txt
  1. Run the Flask app:
python app.py

The API will start on http://localhost:5000.

Usage

Send a POST request to http://localhost:5000/process_data with the following parameters:

  • job_description: The job description PDF file.
  • resume_files[]: An array of resume PDF files.

Configuration

The app.py file contains configuration options for different similarity metrics and their weights. You can adjust these weights and metrics to fine-tune the scoring process.

The output_folder variable defines the directory where temporary files and processed text files will be stored.

Notes

The response time of the API is logged and provided in the JSON response.

About

An updated version of Resume Rankmatching. Uses some pretty cool techniques like ensemble learning, and more!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages