Instructions to use aronjose2005/genz-resume-strength-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aronjose2005/genz-resume-strength-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="aronjose2005/genz-resume-strength-classifier")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("aronjose2005/genz-resume-strength-classifier", device_map="auto") - Notebooks
- Google Colab
- Kaggle
GENZ Resume Strength Classifier
A fine-tuned DistilBERT model for classifying resume bullet points as weak or strong.
Labels
0= weak1= strong
Dataset
The workshop dataset contains 400 labelled resume bullets:
- 200 weak
- 200 strong
- Multiple technical and professional domains
- Difficulty levels: easy, medium, and hard
The dataset was created specifically for this educational workshop.
Training
- Base model:
distilbert/distilbert-base-uncased - Training examples: 320
- Held-out test examples: 80
- Epochs: 3
- Learning rate: 2e-5
- Batch size: 8
- Random seed: 42
Evaluation
Held-out test results:
- Accuracy: 97.5%
- Precision: 100%
- Recall: 95%
- F1: 97.44%
Intended Use
This model is intended for educational demonstration and experimentation with domain-specific fine-tuning of Transformer models.
It can be used to explore whether a resume bullet communicates measurable impact, action, and specificity.
Limitations
This is a small educational dataset and should not be treated as professional hiring advice or as an objective measure of candidate quality.
Model confidence is not a guarantee of correctness.
Workshop
GENZ Resume AI · Livewire Trichy · September 2026
Built as a hands-on demonstration of:
- Pretrained model inference
- Domain mismatch
- Tokenization and model outputs
- Dataset preparation
- Fine-tuning
- Evaluation
- Hugging Face model publishing
- Gradio deployment