chunwoolee0 commited on
Commit
52d1457
1 Parent(s): 4185d2c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -2
README.md CHANGED
@@ -52,11 +52,18 @@ It achieves the following results on the evaluation set:
52
 
53
  ## Model description
54
 
55
- More information needed
56
 
57
  ## Intended uses & limitations
58
 
59
- More information needed
 
 
 
 
 
 
 
60
 
61
  ## Training and evaluation data
62
 
 
52
 
53
  ## Model description
54
 
55
+ KLUE BERT base is a pre-trained BERT Model on Korean Language. The developers of KLUE BERT base developed the model in the context of the development of the [Korean Language Understanding Evaluation (KLUE) Benchmark](https://arxiv.org/pdf/2105.09680.pdf).
56
 
57
  ## Intended uses & limitations
58
 
59
+ ## How to Get Started With the Model
60
+
61
+ ```python
62
+ from transformers import AutoModel, AutoTokenizer
63
+
64
+ model = AutoModel.from_pretrained("klue/bert-base")
65
+ tokenizer = AutoTokenizer.from_pretrained("klue/bert-base")
66
+ ```
67
 
68
  ## Training and evaluation data
69