KoichiYasuoka's picture
model improved
dcdab31
|
raw
history blame
1.07 kB
---
language:
- "ja"
tags:
- "japanese"
- "pos"
- "dependency-parsing"
- "modernbert"
base_model: KoichiYasuoka/modernbert-base-japanese-aozora-upos
datasets:
- "universal_dependencies"
license: "apache-2.0"
pipeline_tag: "token-classification"
widget:
- text: "全学年にわたって小学校の国語の教科書に挿し絵が用いられている"
---
# modernbert-base-japanese-aozora-ud-goeswith
## Model Description
This is a ModernBERT model pretrained for POS-tagging and dependency-parsing (using `goeswith` for subwords), derived from [modernbert-base-japanese-aozora-upos](https://huggingface.co/KoichiYasuoka/modernbert-base-japanese-aozora-upos) and [UD_Japanese-GSDLUW](https://github.com/UniversalDependencies/UD_Japanese-GSDLUW).
## How to Use
```py
from transformers import pipeline
nlp=pipeline("universal-dependencies","KoichiYasuoka/modernbert-base-japanese-aozora-ud-goeswith",trust_remote_code=True,aggregation_strategy="simple")
print(nlp("全学年にわたって小学校の国語の教科書に挿し絵が用いられている"))
```