KoichiYasuoka's picture
initial release
f86fcd7
|
raw
history blame
895 Bytes
---
language:
- "ko"
tags:
- "korean"
- "masked-lm"
license: "cc-by-sa-4.0"
pipeline_tag: "fill-mask"
mask_token: "[MASK]"
---
# roberta-base-korean-hanja
## Model Description
This is a RoBERTa model pre-trained on Korean texts, derived from [klue/roberta-base](https://huggingface.co/klue/roberta-base). Token-embeddings are enhanced to include all ์ธ๋ช…์šฉ ํ•œ์ž characters. You can fine-tune `roberta-base-korean-hanja` for downstream tasks, such as [POS-tagging](https://huggingface.co/KoichiYasuoka/roberta-base-korean-upos), [dependency-parsing](https://huggingface.co/KoichiYasuoka/roberta-base-korean-ud-goeswith), and so on.
## How to Use
```py
from transformers import AutoTokenizer,AutoModelForMaskedLM
tokenizer=AutoTokenizer.from_pretrained("KoichiYasuoka/roberta-base-korean-hanja")
model=AutoModelForMaskedLM.from_pretrained("KoichiYasuoka/roberta-base-korean-hanja")
```