File size: 1,045 Bytes
12276f2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | ---
language: en
tags:
- job-classification
- salary-prediction
- experience-prediction
- deberta
---
# JobPredictor1
Fine-tuned DeBERTa-v3-small model that predicts:
- **Expected years of experience** required for a job
- **Lower salary bound** (USD)
- **Upper salary bound** (USD)
## Input Format
```
[TITLE]: <job title> [DESC]: <job description>
```
## Outputs
| Output | Type | Description |
|---|---|---|
| expected_experience_years | int | Years of experience required |
| pay_lower | int | Lower salary bound (USD) |
| pay_upper | int | Upper salary bound (USD) |
## Normalization
Predictions are z-score normalized. Use `norm_stats.json` to denormalize:
```python
real_value = pred * norm_stats[col]["std"] + norm_stats[col]["mean"]
```
## Test Set Performance
| Metric | Value |
|---|---|
| Experience MAE | 0.57 years |
| Experience Within 1yr | 83.1% |
| Pay Lower MAE | $15,511 |
| Pay Lower Within $20k | 84.5% |
| Pay Upper MAE | $20,190 |
| Pay Upper Within $20k | 76.0% |
## Base Model
microsoft/deberta-v3-small
|