Views
No views yet
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 |
1from transformers import AutoTokenizer, AutoModelForTokenClassification, pipeline
2
3ner = pipeline("token-classification", model="davanstrien/eval-extraction-ner-v0", aggregation_strategy="simple")
4ner("This model was evaluated on MMLU and HellaSwag.")