diff --git a/ps-config/demoDynamic/demoDynamic.conf b/ps-config/demoDynamic/demoDynamic.conf index 8e664d4ed1d9ebafdc4a4761560ff71848b1d879..9cb30aa6fa49e70d0245c6b94d594f00d1643f8b 100644 --- a/ps-config/demoDynamic/demoDynamic.conf +++ b/ps-config/demoDynamic/demoDynamic.conf @@ -57,3 +57,12 @@ jsgf=/vol/robocup/2014/share/SpeechRec/psGrammar/restaurant/otherCommand.jsgf; rsbscope=/speechrec/psa/otherCommand; bestpath=no; autoload=yes; + +[pocketsphinxinstance] +name=controlExecution; +hmm=/vol/robocup/2014/share/pocketsphinx/model/hmm/en_US/hub4wsj_sc_8k; +dict=/vol/robocup/2014/share/SpeechRec/psGrammar/dictionary/tobiDic.dic; +jsgf=/vol/robocup/2014/share/SpeechRec/psGrammar/commands/controlExecution.jsgf; +rsbscope=/speechrec/psa/controlExecution; +bestpath=no; +autoload=yes; diff --git a/ps-grammar/commands/controlExecution.jsgf b/ps-grammar/commands/controlExecution.jsgf new file mode 100644 index 0000000000000000000000000000000000000000..fc73a10e8b1d8eaa1bc3a043bf34861d04803b49 --- /dev/null +++ b/ps-grammar/commands/controlExecution.jsgf @@ -0,0 +1,8 @@ +#JSGF V1.0; +grammar ToBI_shellgame; +public <statement> = [tobi] [please] <command> [please] [tobi]; + +<command> = <stop> | <continue>| <leave>; +<stop> = (stop it) | stop | cancel; +<leave> = leave | finish | (go back) | (we are done) | (lets call it a day); +<continue> = continue | proceed;