Token Classification
Transformers
Safetensors
English
bert
ner
named-entity-recognition
job-postings
distilled
Instructions to use AchrafSoltani/jobbert-ner-haiku-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use AchrafSoltani/jobbert-ner-haiku-v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="AchrafSoltani/jobbert-ner-haiku-v1")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("AchrafSoltani/jobbert-ner-haiku-v1") model = AutoModelForTokenClassification.from_pretrained("AchrafSoltani/jobbert-ner-haiku-v1", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update model card: paper retitled to 'Distributed NER on Spark'; repo renamed to achrafsoltani/distributed-ner-on-spark
Browse files
README.md
CHANGED
|
@@ -18,7 +18,7 @@ metrics:
|
|
| 18 |
|
| 19 |
# jobbert-ner-haiku-v1
|
| 20 |
|
| 21 |
-
Distilled Named Entity Recognition model for English-language job postings. One of six students produced for the paper *Distributed
|
| 22 |
|
| 23 |
- **Teacher:** Claude Haiku 4.5 (labels acquired via AWS Bedrock)
|
| 24 |
- **Architecture:** jjzha/jobbert-base-cased fine-tuned for 8-class token classification
|
|
@@ -139,10 +139,10 @@ This model extracts entities from job postings, a document class whose downstrea
|
|
| 139 |
```bibtex
|
| 140 |
@unpublished{soltani2026distilledner,
|
| 141 |
author = {Achraf Soltani},
|
| 142 |
-
title = {Distributed
|
| 143 |
year = {2026},
|
| 144 |
note = {Advisor: Prof.\ Hanine Mohamed},
|
| 145 |
-
url = {https://github.com/
|
| 146 |
}
|
| 147 |
```
|
| 148 |
|
|
|
|
| 18 |
|
| 19 |
# jobbert-ner-haiku-v1
|
| 20 |
|
| 21 |
+
Distilled Named Entity Recognition model for English-language job postings. One of six students produced for the paper *Distributed NER on Spark: A Teacher-Student Pipeline for Large-Scale Entity Extraction from Job Postings* (Soltani 2026).
|
| 22 |
|
| 23 |
- **Teacher:** Claude Haiku 4.5 (labels acquired via AWS Bedrock)
|
| 24 |
- **Architecture:** jjzha/jobbert-base-cased fine-tuned for 8-class token classification
|
|
|
|
| 139 |
```bibtex
|
| 140 |
@unpublished{soltani2026distilledner,
|
| 141 |
author = {Achraf Soltani},
|
| 142 |
+
title = {Distributed NER on Spark: A Teacher-Student Pipeline for Large-Scale Entity Extraction from Job Postings},
|
| 143 |
year = {2026},
|
| 144 |
note = {Advisor: Prof.\ Hanine Mohamed},
|
| 145 |
+
url = {https://github.com/achrafsoltani/distributed-ner-on-spark},
|
| 146 |
}
|
| 147 |
```
|
| 148 |
|