JobPredictor1
Fine-tuned DeBERTa-v3-base model that predicts:
- Expected years of experience required for a job
- Expected salary (USD)
Input Format
[LOCATION] <Remote | United States (State) | Country> [TITLE]: <job title> [DESC]: <job description>
Outputs
| Output | Type | Description |
|---|---|---|
| expected_experience_years | int | Years of experience required |
| expected_salary | int | Expected salary (USD) |
Normalization
Experience is z-score normalized:
real_value = pred * norm_stats["expected_experience_years"]["std"] + norm_stats["expected_experience_years"]["mean"]
Salary is log1p + z-score normalized:
real_salary = np.expm1(pred * norm_stats["expected_salary"]["std"] + norm_stats["expected_salary"]["mean"])
Test Set Performance
| Metric | Value |
|---|---|
| Experience MAE | 0.57 years |
| Experience Within 1yr | 83.1% |
| Salary MAE | $15,511 |
| Salary Within $20k | 84.5% |
Base Model
microsoft/deberta-v3-base
- Downloads last month
- 11
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support