Downloads · 30 days
19
24% of all-time downloads
davanstrien/eval-extraction-ner-v0
eval-extraction-ner-v0 is a token classification model from davanstrien. Use it when you need labels on individual words, such as names. The card lists the license as apache-2.0.
Token classifier trained on bootstrap NER labels from davanstrien/eval-mentions-bootstrap. Demonstrates the bootstrap-labels skill workflow: GLiNER bootstraps coarse labels, a small task-specific model is trained on t…
Downloads · 30 days
19
24% of all-time downloads
All-time downloads
80
Public
Parameters
66.4M
265 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors265 MB · 100%
From the Hugging Face model README
Token classifier trained on bootstrap NER labels from davanstrien/eval-mentions-bootstrap. Demonstrates the bootstrap-labels skill workflow: GLiNER bootstraps coarse labels, a small task-specific model is trained on them.
davanstrien/eval-mentions-bootstrapuv-scripts/gliner)O):
| Metric | Value |
|---|---|
| F1 | 0.5573 |
| Precision | 0.5838 |
| Recall | 0.5332 |
| Accuracy | 0.9870 |
(Note: held-out 10% of bootstrap labels — these are silver labels, not human-reviewed gold. Numbers reflect agreement with GLiNER, not absolute accuracy.)
from transformers import AutoTokenizer, AutoModelForTokenClassification, pipeline
ner = pipeline("token-classification", model="davanstrien/eval-extraction-ner-v0", aggregation_strategy="simple")
ner("This model was evaluated on MMLU and HellaSwag.")