Commit ·
d025228
1
Parent(s): eaa6860
Update README.md
Browse files
README.md
CHANGED
|
@@ -28,22 +28,32 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 28 |
|
| 29 |
# klue_nli_roberta_base_model
|
| 30 |
|
| 31 |
-
This model is a fine-tuned version of [klue/roberta-base](https://huggingface.co/klue/roberta-base)
|
|
|
|
| 32 |
It achieves the following results on the evaluation set:
|
| 33 |
- Loss: 0.6867
|
| 34 |
- Accuracy: 0.8653
|
| 35 |
|
| 36 |
## Model description
|
| 37 |
|
| 38 |
-
|
|
|
|
| 39 |
|
| 40 |
## Intended uses & limitations
|
| 41 |
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
## Training and evaluation data
|
| 45 |
|
| 46 |
-
More information needed
|
| 47 |
|
| 48 |
## Training procedure
|
| 49 |
|
|
|
|
| 28 |
|
| 29 |
# klue_nli_roberta_base_model
|
| 30 |
|
| 31 |
+
This model is a fine-tuned version of [klue/roberta-base](https://huggingface.co/klue/roberta-base)
|
| 32 |
+
on the klue dataset.
|
| 33 |
It achieves the following results on the evaluation set:
|
| 34 |
- Loss: 0.6867
|
| 35 |
- Accuracy: 0.8653
|
| 36 |
|
| 37 |
## Model description
|
| 38 |
|
| 39 |
+
Pretrained RoBERTa Model on Korean Language. See Github and Paper for more details.
|
| 40 |
+
|
| 41 |
|
| 42 |
## Intended uses & limitations
|
| 43 |
|
| 44 |
+
## How to use
|
| 45 |
+
*NOTE*: Use BertTokenizer instead of RobertaTokenizer. (AutoTokenizer will load BertTokenizer)
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
from transformers import AutoModel, AutoTokenizer
|
| 49 |
+
|
| 50 |
+
```python
|
| 51 |
+
model = AutoModel.from_pretrained("klue/roberta-base")
|
| 52 |
+
tokenizer = AutoTokenizer.from_pretrained("klue/roberta-base")
|
| 53 |
+
```
|
| 54 |
|
| 55 |
## Training and evaluation data
|
| 56 |
|
|
|
|
| 57 |
|
| 58 |
## Training procedure
|
| 59 |
|