auhide commited on
Commit
8f5dc45
1 Parent(s): 1bb5443

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -0
README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - bg
4
+ license: mit
5
+ pipeline_tag: token-classification
6
+ model-index:
7
+ - name: pos-bert-bg
8
+ results: []
9
+ widget:
10
+ - text: 'Адам не знаеше какво да каже'
11
+ ---
12
+
13
+
14
+ # pos-bert-bg
15
+
16
+ ## Usage
17
+ ```python
18
+ from transformers import pipeline
19
+
20
+
21
+ MODEL_ID = "auhide/pos-bert-bg"
22
+
23
+ pos = pipeline("token-classification", model=MODEL_ID, tokenizer=MODEL_ID)
24
+ pos("Адам не знаеше какво да каже")
25
+ ```