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