kykim commited on
Commit
8dfa364
2 Parent(s): 13aaa51 b17d58f

Merge branch 'main' of https://huggingface.co/kykim/funnel-kor-base into main

Browse files
Files changed (1) hide show
  1. README.md +15 -0
README.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: ko
3
+ ---
4
+
5
+ # Funnel-transformer base model for Korean
6
+
7
+ * 70GB Korean text dataset and 42000 lower-cased subwords are used
8
+ * Check the model performance and other language models for Korean in [github](https://github.com/kiyoungkim1/LM-kor)
9
+
10
+ ```python
11
+ from transformers import FunnelTokenizer, FunnelModel
12
+
13
+ tokenizer = FunnelTokenizer.from_pretrained("kykim/funnel-kor-base")
14
+ model = FunnelModel.from_pretrained("kykim/funnel-kor-base")
15
+ ```