File size: 1,253 Bytes
dfb589d df1d9d7 fab470f a74e743 dfb589d d154ac6 dfb589d 221da2e dfb589d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
---
language:
- "ain"
tags:
- "ainu"
- "token-classification"
- "pos"
- "dependency-parsing"
license: "cc-by-sa-4.0"
pipeline_tag: "token-classification"
widget:
- text: "itak=as awa pon rupne aynu ene itaki"
- text: "イタカㇱ アワ ポン ルㇷ゚ネ アイヌ エネ イタキ"
- text: "итакас ава пон рубне айну эне итакі"
---
# deberta-base-ainu-upos
## Model Description
This is a DeBERTa(V2) model pre-trained on Ainu texts (in カタカナ, Roman, and Кириллица) for POS-tagging and dependency-parsing, derived from [deberta-base-ainu](https://huggingface.co/KoichiYasuoka/deberta-base-ainu). Every word is tagged by [UPOS](https://universaldependencies.org/u/pos/) (Universal Part-Of-Speech).
## How to Use
```py
from transformers import AutoTokenizer,AutoModelForTokenClassification
tokenizer=AutoTokenizer.from_pretrained("KoichiYasuoka/deberta-base-ainu-upos")
model=AutoModelForTokenClassification.from_pretrained("KoichiYasuoka/deberta-base-ainu-upos")
```
or
```py
import esupar
nlp=esupar.load("KoichiYasuoka/deberta-base-ainu-upos","ainu")
```
## See Also
[esupar](https://github.com/KoichiYasuoka/esupar): Tokenizer POS-tagger and Dependency-parser with BERT/RoBERTa/DeBERTa models
|