resume-scorer / README.md
bigrollo's picture
Upload folder using huggingface_hub
0b27691 verified
metadata
language: en
license: mit
tags:
  - text-classification
  - resume-screening
pipeline_tag: text-classification

GST Resume Scorer

A fine-tuned DistilBERT model for screening resumes for GST High Speed positions.

Labels

  • FORWARD: Strong candidate, schedule interview
  • HOLD: Partial match, keep in talent pool
  • DECLINE: Not a fit at this time

Usage

from transformers import pipeline

classifier = pipeline("text-classification", model="bigrollo/resume-scorer")
result = classifier("Position: NOC Engineer. Candidate: CCNA certified, 4 years NOC experience")
print(result)