KoichiYasuoka's picture
release after the tokenizer refined
204ab84
|
raw
history blame
894 Bytes
---
language:
- "ja"
tags:
- "japanese"
- "pos"
- "dependency-parsing"
base_model: cyberagent/open-calm-large
datasets:
- "universal_dependencies"
license: "cc-by-sa-4.0"
pipeline_tag: "token-classification"
widget:
- text: "全学年にわたって小学校の国語の教科書に挿し絵が用いられている"
---
# open-calm-large-ud-causal
## Model Description
This is a GPT-NeoX model pretrained for POS-tagging and dependency-parsing, derived from [open-calm-large](https://huggingface.co/cyberagent/open-calm-large) refined for [UD_Japanese-GSDLUW](https://github.com/UniversalDependencies/UD_Japanese-GSDLUW).
## How to Use
```
from transformers import pipeline
nlp=pipeline("universal-dependencies","KoichiYasuoka/open-calm-large-ud-causal",trust_remote_code=True)
print(nlp("全学年にわたって小学校の国語の教科書に挿し絵が用いられている"))
```