File size: 430 Bytes
8f5dc45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
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("Адам не знаеше какво да каже")
```