File size: 447 Bytes
396afe9 95da984 396afe9 95da984 396afe9 95da984 396afe9 95da984 396afe9 95da984 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
---
library_name: transformers
tags: []
---
# Zerpal-rubert-tiny2-pos-tagger
## How to use
You can use this model directly with a pipeline for NER:
```py
from transformers import pipeline
text = "Яратон, яратон, мар меда сыӵе тон?"
classifier = pipeline("ner", model="udmurtNLP/zerpal-rubert-tiny2-pos-tagger", tokenizer="udmurtNLP/zerpal-rubert-tiny2-tokenizer", grouped_entities=True)
result = classifier(text)
``` |