Skip to content

dblasko/cv-job-matcher

Repository files navigation

cv-job-matcher

IR-driven job matching based on your CV.

Setting up the environment

System-level dependencies the packages require:

  • pkg-config
  • poppler

Examples of how to install these dependencies on various platforms:

  • Ubuntu: sudo apt-get install pkg-config poppler-utils
  • Mac OS: brew install pkg-config poppler
  • Windows: This OS requires you to install the Microsoft Visual C++ build tools for the pdf-parsing package to work. You can download them from here by selecting "Desktop development with C++ workload". Then install pkg-config by downloading it from here, extracting the downloaded ZIP and copying the pkg-config.exe file to C:\Program Files (x86)\pkgconfig\bin (create the folder if it does not exist). Finally, add C:\Program Files (x86)\pkgconfig\bin to your PATH environment variable. You can run pkg-config --version to check that it is working. You then need to create a conda environment and run:
conda create -n recSys python==3.10
conda activate recSys
conda install -c conda-forge poppler

Python dependencies: To install the python dependencies, run the following command from the project root directory, ideally in a new envgironment:

pip install langchain html2text openai streamlit streamlit-lottie pdftotext altair faiss-cpu pandas pympler pyparsing pyyaml tqdm sentence_transformers

You need to provide a valid OpenAI key in a key.yaml file at the root of the project. It should have the following form:

openai_key: '<your key here>'

Starting the demo application

A web-based interface is bundled with the project. Everything is run from that web interface. To use it, after setting up the dependencies, execute the following command from the project root directory:

streamlit run app.py

The application will pop up in your default browser and using it should be straightforward: you can upload any CV in PDF format and the application will return a list of jobs that matches the CV, along with scores and improvement recommendations for the jobs dynamically. This works after the preprocessed data has been generated, if you do not have the preprocessed data, refer to the "Generating the preprocessed job data" section..

Generating the preprocessed job data

To limit the inference cost when a user performs a CV-matching requests, the web-application only uses pre-computed embeddings for the documents (job postings) and only embeds the query (CV or ideal job based on the CV) on the fly. Therefore, the first time you run the application, you will need to generate the preprocessed data locally.

The code comes with the pre-processed embedding (pre-processing code is also included): job_description_embedding/job_openings.json and job_description_embedding/job_openings_completed.json. The second file is the version of the first file where null fields of the job postings have been completed with GPT-3.5-turbo - we include the file to cut the costs as generating those is expensive.

The locally create the embedding based on those files, run:

python job_description_embedding/JobMatchingBaseline.py
python job_description_embedding/JobMatchinFineGrained.py

On windows the sibling folder imports sometimes work differently, development was done on unix-based systems. If you get an import error for the second python command, please move the python file to the project root and run it there, then put it back in the job_description_embedding folder.

This results in a job_description_embedding/embeddings folder containing saved_embeddings.pkl and fine_graind/....

To re-generate the job posting null completions with GPT-3.5-turbo (expensive): run Job_description_embeddings.ipynb to parse jobs and the body parsing. If job_openings_completed.json exists or REPARSE_JOBS in notebook is true the notebook will use gpt-3.5-turbo to parse the body of the jobs into appropriate fields. If an error occurs during parsing a specific job the fields will stay null and the job will additionally be written to the job_openings_full_failed_{batch}.json. You can find the batch files in job_openings and the consolidated jobs in job_openings_completed.json.

About

IR-driven job matching based on your CV.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published