Downloads · 30 days
14
24% of all-time downloads
davanstrien/eval-extraction-ner-v1
eval-extraction-ner-v1 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
14
24% of all-time downloads
All-time downloads
59
Public
Parameters
184M
368 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors368 MB · 98%
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.0000 |
| Precision | 0.0000 |
| Recall | 0.0000 |
| Accuracy | 0.9784 |
(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-v1", aggregation_strategy="simple")
ner("This model was evaluated on MMLU and HellaSwag.")