dnjdsxor21 commited on
Commit
e6b7f7d
·
1 Parent(s): f1d9a22

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - ko
4
+ metrics:
5
+ - exact_match
6
+ - f1
7
+ ---
8
+
9
+ ### finetuned version from `klue/roberta-large` with qa data
10
+
11
+ data : korquad v1 + wiki
12
+
13
+ ```python
14
+ config = AutoConfig.from_pretrained('dnjdsxor21/roberta-korquad-wiki')
15
+ RobertaModelForQuestionAnswering.from_pretrained('dnjdsxor21/roberta-korquad-wiki', config=config)
16
+ BertTokenizer.from_pretrained('dnjdsxor21/roberta-korquad-wiki')
17
+ ```