pos-bert-bg / README.md
auhide's picture
Create README.md
8f5dc45 verified
|
raw
history blame
No virus
430 Bytes
---
language:
- bg
license: mit
pipeline_tag: token-classification
model-index:
- name: pos-bert-bg
results: []
widget:
- text: 'Адам не знаеше какво да каже'
---
# pos-bert-bg
## Usage
```python
from transformers import pipeline
MODEL_ID = "auhide/pos-bert-bg"
pos = pipeline("token-classification", model=MODEL_ID, tokenizer=MODEL_ID)
pos("Адам не знаеше какво да каже")
```