timpal0l commited on
Commit
5d2f29e
1 Parent(s): 10922b6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -3
README.md CHANGED
@@ -1,4 +1,21 @@
1
  ---
2
- language:
3
- - sv
4
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language: sv
3
+ tags:
4
+ - bert
5
+ license: apache-2.0
6
+ datasets:
7
+ - nordicpile
8
+ ---
9
+
10
+ # Bert Large Cased
11
+ 64k vocab
12
+ ```python
13
+ from transformers import pipeline
14
+
15
+ classifier = pipeline("fill-mask")
16
+ classifier("Paris is the <mask> of France.")
17
+
18
+ # [{'score': 0.7, 'sequence': 'Paris is the capital of France.'},
19
+ # {'score': 0.2, 'sequence': 'Paris is the birthplace of France.'},
20
+ # {'score': 0.1, 'sequence': 'Paris is the heart of France.'}]
21
+ ```