Skip to content

The web application “Job recruitment system” provides an easy and convenient search application for the job seekers to find their desired jobs and for the recruiters to find the right candidate. The recruiter will post their current vacancy with a record, and job seekers can search for current job openings and apply to their desired positions.

Notifications You must be signed in to change notification settings

Biplob68/Smart-Recruitment-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

                                                 Smart Recruitment System

A Django-based resume ranker website where recruiter can post jobs, candidate can apply for the job, fill in the required data, upload resumes, and the system shortlists the candidate resumes. The system ranks the CVs based on the document similarity of the job description and the resumes using the KNN model and shows the shortlist.

Introduction:

Find the best candidate from a recruitment process within the shortest time is challenging for a company. For this purpose, we proposed a recruitment system where recruiters will post their current vacancy with some personality questions. Then applicants will answer all the questions along with dropping the CV for a particular job. Then, the system will automatically parse the resume to find out the required skills and produce a shortlist by combining question answering and resume parsing score.

Objective:

  • Find the best candidates.
  • Provide a more realistic ranking system.
  • Make the recruiting process more flexible.
  • Save human efforts, time, and cost.

System Architecture:

system architecture (1)

Ranking Model:

Model architecture

  • Data Cleaning: The system cleans the special characters, signals, and numbers from the extracted data.
  • Tokenization: The clean extracted data are converted into tokens.
  • Data Preparation: Stops words are removed and the tokens are stemmed.
  • Requirement Extraction: The relevancy of important words is extracted using TF-IDF from each CV data and mapped to the CV based on the given requirements.
  • Matching Similarity: The system collects the CVs that are more compatible with thevacancy based on the required skills.
  • Ranking: After matching similarity, the system will generate a rank that will show the topk’s CVs. For example: top 20 CVs.
  • Final result: Next the final result will be calculated based on the score from assessments and matching skillset.

Design Algorithm:

  • Basic Requirements: Academic CGPA or degree, experience year.

  • Data Pre-processing: Data cleaning, Word Stemming, Verb Lemmatizing.

  • Calculate TF-IDF:

    • TF(‘keyword’) = number of appeared (‘keyword’) / Total number of (‘keyword’)
    • IDF(‘keyword’) = log(total number of resume / total number of the resume with term ‘keywords’). It sets IDF log value = 1 for the required resume and 0 for the unwanted.
    • weight(‘keyword’) = TF(‘keyword’) * IDF(‘keyword’)
  • Document Similarity Matching Score: TF-IDF weight, KNN.

  • Final Score.

Home Page

homepage

Post a Job

post_job

Job Listing Page

job_listing

Single Job description

single_job

Apply Job Page

apply_job

Final Ranking

ranking_page

About

The web application “Job recruitment system” provides an easy and convenient search application for the job seekers to find their desired jobs and for the recruiters to find the right candidate. The recruiter will post their current vacancy with a record, and job seekers can search for current job openings and apply to their desired positions.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published