--- language: - "ja" tags: - "japanese" - "pos" - "dependency-parsing" - "modernbert" base_model: sbintuitions/modernbert-ja-130m datasets: - "universal_dependencies" license: "mit" pipeline_tag: "token-classification" widget: - text: "全学年にわたって小学校の国語の教科書に挿し絵が用いられている" --- # modernbert-japanese-130m-ud-embeds ## Model Description This is a ModernBERT model pretrained for POS-tagging and dependency-parsing, derived from [modernbert-ja-130m](https://huggingface.co/sbintuitions/modernbert-ja-130m) 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-130m-ud-embeds",trust_remote_code=True) print(nlp("全学年にわたって小学校の国語の教科書に挿し絵が用いられている")) ```