KoichiYasuoka
commited on
Commit
·
80c10e9
1
Parent(s):
51e8778
dependency-parsing
Browse files
README.md
CHANGED
@@ -28,3 +28,15 @@ nlp=pipeline("upos","KoichiYasuoka/modernbert-base-japanese-aozora-upos",trust_r
|
|
28 |
print(nlp("国境の長いトンネルを抜けると雪国であった。"))
|
29 |
```
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
print(nlp("国境の長いトンネルを抜けると雪国であった。"))
|
29 |
```
|
30 |
|
31 |
+
or
|
32 |
+
|
33 |
+
```py
|
34 |
+
import esupar
|
35 |
+
nlp=esupar.load("KoichiYasuoka/modernbert-base-japanese-aozora-upos")
|
36 |
+
print(nlp("国境の長いトンネルを抜けると雪国であった。"))
|
37 |
+
```
|
38 |
+
|
39 |
+
## See Also
|
40 |
+
|
41 |
+
[esupar](https://github.com/KoichiYasuoka/esupar): Tokenizer POS-tagger and Dependency-parser with BERT/RoBERTa/DeBERTa/GPT models
|
42 |
+
|