diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-05-26 14:49:45 -0700 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-05-26 14:49:45 -0700 |
| commit | 79b5d466202ecfeaae3d9472ed89d4f94ab66450 (patch) | |
| tree | 3fc810374797e4e934f55a61bf323f8af87ff565 /boot/boot.py | |
| parent | b0c595cc234f490bf41748f80b9b4523b88323be (diff) | |
| download | jasper-client-79b5d466202ecfeaae3d9472ed89d4f94ab66450.tar.gz jasper-client-79b5d466202ecfeaae3d9472ed89d4f94ab66450.zip | |
vocabcompiler now takes arguments (useful for testing)
Diffstat (limited to 'boot/boot.py')
| -rwxr-xr-x | boot/boot.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/boot.py b/boot/boot.py index 56bcc7e..b33fd34 100755 --- a/boot/boot.py +++ b/boot/boot.py @@ -22,7 +22,7 @@ def configure(): print "CONNECTED TO INTERNET" print "COMPILING DICTIONARY" - vocabcompiler.compile() + vocabcompiler.compile("../client/sentences.txt", "../client/dictionary.dic", "../client/languagemodel.lm") print "STARTING CLIENT PROGRAM" @@ -49,7 +49,7 @@ def configure(): print "CONNECTED TO INTERNET" print "COMPILING DICTIONARY" - vocabcompiler.compile() + vocabcompiler.compile("../client/sentences.txt", "../client/dictionary.dic", "../client/languagemodel.lm") print "STARTING CLIENT PROGRAM" |
