2015-10-19 19:45:08 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from sphinxbase.sphinxbase import LogMath
|
|
|
|
from sphinxbase.sphinxbase import FsgModel
|
|
|
|
|
|
|
|
lmath = LogMath()
|
|
|
|
fsg = FsgModel("simple_grammar", lmath, 1.0, 10)
|
|
|
|
fsg.word_add("hello")
|
|
|
|
fsg.word_add("world")
|
|
|
|
print (fsg.word_id("world"))
|
|
|
|
|
2016-06-19 18:53:24 +00:00
|
|
|
fsg.add_silence("<sil>", 1, 0.5)
|
|
|
|
|