KoichiYasuoka's picture
initial release
a18ee8d
|
raw
history blame
930 Bytes
---
language:
- "ja"
tags:
- "japanese"
- "pos"
- "dependency-parsing"
- "modernbert"
base_model: sbintuitions/modernbert-ja-70m
datasets:
- "universal_dependencies"
license: "mit"
pipeline_tag: "token-classification"
widget:
- text: "全学年にわたって小学校の国語の教科書に挿し絵が用いられている"
---
# modernbert-japanese-70m-ud-embeds
## Model Description
This is a ModernBERT model pretrained for POS-tagging and dependency-parsing, derived from [modernbert-ja-70m](https://huggingface.co./sbintuitions/modernbert-ja-70m) refined for [UD_Japanese-GSDLUW](https://github.com/UniversalDependencies/UD_Japanese-GSDLUW).
## How to Use
```py
from transformers import pipeline
nlp=pipeline("universal-dependencies","KoichiYasuoka/modernbert-japanese-70m-ud-embeds",trust_remote_code=True)
print(nlp("全学年にわたって小学校の国語の教科書に挿し絵が用いられている"))
```