patrickvonplaten
commited on
Commit
•
9b25b31
1
Parent(s):
ffbf38f
up
Browse files- attrs.json +1 -0
- kenLM.arpa +19 -0
- unigrams.txt +4 -0
attrs.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"alpha": 0.5, "beta": 1.5, "unk_score_offset": -10.0, "score_boundary": true}
|
kenLM.arpa
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
\data\
|
2 |
+
ngram 1=5
|
3 |
+
ngram 2=5
|
4 |
+
|
5 |
+
\1-grams:
|
6 |
+
-10 <unk> 0
|
7 |
+
0 <s> 0
|
8 |
+
0 </s> 0
|
9 |
+
0 bugs 0
|
10 |
+
0 bunny 0
|
11 |
+
|
12 |
+
\2-grams:
|
13 |
+
0 bunny </s>
|
14 |
+
-10 bugs </s>
|
15 |
+
0 <s> bugs
|
16 |
+
-10 <s> bunny
|
17 |
+
0 bugs bunny
|
18 |
+
|
19 |
+
\end\
|
unigrams.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
</s>
|
2 |
+
<s>
|
3 |
+
bugs
|
4 |
+
bunny
|