-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
21 lines (17 loc) · 1.01 KB
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<kyfd>
<!-- A file containing the input symbols -->
<arg name="isymbols" value="/path/to/your/workspace/kkci2pron/data/in.sym" />
<!-- A file containing the output symbols (in OpenFst format) -->
<arg name="osymbols" value="/path/to/your/workspace/kkci2pron/data/out.sym" />
<!-- The model that is to be used in decoding -->
<fst file="/path/to/your/workspace/kkci2pron/data/lexicon.cmp" />
<fst file="/path/to/your/workspace/kkci2pron/data/lm.cmp" />
<!-- A symbol that is appended to the end of every sentence for text input.
Default is <s>, but will be changed to null in a future version. -->
<arg name="terminal" value="</s>" />
<!-- The symbol to use when an unknown symbol is encountered (default <unk>).
Only applicable for text input.
To ensure proper output, the unknown symbol must be passed as-is through the entire model. -->
<arg name="unknown" value="<unk>" />
</kyfd>