diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-08-23 09:10:37 +0800 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-08-23 09:10:37 +0800 |
| commit | bd72c31b6e9e08c03198c106c49ebf904a50a9cb (patch) | |
| tree | 4e9eceeb7143418af90836645d702d556d0444f2 /client/g2p.py | |
| parent | 0d4bb63b3727e44c973d167be0d82c4c062648f6 (diff) | |
| download | jasper-client-bd72c31b6e9e08c03198c106c49ebf904a50a9cb.tar.gz jasper-client-bd72c31b6e9e08c03198c106c49ebf904a50a9cb.zip | |
More cleanup, mostly in docstrings
Diffstat (limited to 'client/g2p.py')
| -rw-r--r-- | client/g2p.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/g2p.py b/client/g2p.py index 6d72bfe..bae40b6 100644 --- a/client/g2p.py +++ b/client/g2p.py @@ -35,7 +35,7 @@ def translateWords(words): def translateFile(input_filename, output_filename=None): - out = subprocess.check_output(['phonetisaurus-g2p', '--model=%s' % + out = subprocess.check_output(['phonetisaurus-g2p', '--model=%s' % PHONETISAURUS_PATH + "/g014b2b.fst", '--input=%s' % input_filename, '--words', '--isfile']) out = parseOutput(out) |
