File size: 1,080 Bytes
4e0a454 62ca9eb be0b9d0 98cd741 62ca9eb be0b9d0 3ab0cb3 62ca9eb be0b9d0 98cd741 62ca9eb 0e5dc5f 62ca9eb |
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 |
---
language: ko
tags:
- korean
- klue
- korquad
metrics:
- exact_match
- f1
library_name: transformers
---
# ๐ง๐ปโ๐ป KLUE RoBERTa Large
- ์ด ๋ชจ๋ธ์ klue/roberta-large๋ฅผ ํ๊ตญ์ด Machine Reading Comprehension๋ฅผ ์ํด KorQuAD ๋ฐ์ดํฐ 2.1 version 27,423๊ฐ์ ๋ฐ์ดํฐ๋ฅผ ํ์ต์์ผ ๋ง๋ ๋ชจ๋ธ์
๋๋ค.
<br>
# ๐ What Should Know
- KorQuAD v2.1์ ์๋ณธ ๋ฐ์ดํฐ๊ฐ ์๋ ํ์ดํผ๋งํฌ, ํ๊ทธ, ์ ๋์ฝ๋ BOM๋ฅผ ์ ๊ฑฐํ์ฌ ์ ์ฒ๋ฆฌ๋ฅผ ํ์๊ณ , context ๊ธธ์ด๊ฐ 7500์ด ๋์ด๊ฐ ๋ฐ์ดํฐ๋ค์ ์ ์ธํ์ฌ 27,423๊ฐ์ ๋ฐ์ดํฐ์
์ ์ด์ฉํ์ฌ ํ์ต์์ผฐ์ต๋๋ค.
- ์๋ณธ ๋ฐ์ดํฐ ๋งํฌ : https://korquad.github.io/
<br>
# ๐ Getting Started
```python
from transformers import AutoConfig, AutoModelForQuestionAnswering, AutoTokenizer
config = AutoConfig.from_pretrained('uomnf97/klue-roberta-finetuned-korquad-v2')
tokenizer = AutoTokenizer.from_pretrained('uomnf97/klue-roberta-finetuned-korquad-v2')
model = AutoModelForQuestionAnswering.from_pretrained('uomnf97/klue-roberta-finetuned-korquad-v2',config=config)
``` |