From 897a94c5b131b918bcf3ebda45abb0525706f7cc Mon Sep 17 00:00:00 2001 From: Jonas Gerlach <jgerlach@techfak.uni-bielefeld.de> Date: Wed, 21 Jan 2015 14:41:57 +0100 Subject: [PATCH] added grammar and config for challenge 2015 --- .../jgerlach_challenge.conf | 24 +++++++++++++++++++ .../jgerlach_challenge.jsgf | 5 ++++ 2 files changed, 29 insertions(+) create mode 100644 ps-config/jgerlach_challenge/jgerlach_challenge.conf create mode 100644 ps-grammar/jgerlach_challenge/jgerlach_challenge.jsgf diff --git a/ps-config/jgerlach_challenge/jgerlach_challenge.conf b/ps-config/jgerlach_challenge/jgerlach_challenge.conf new file mode 100644 index 00000000..17e30677 --- /dev/null +++ b/ps-config/jgerlach_challenge/jgerlach_challenge.conf @@ -0,0 +1,24 @@ +[main] +startdb=47; +uttdb=52; +silence=400; +timeout=8; +openDeviceDirectly=yes; + +[pocketsphinxinstance] +name=jgerlach_challenge; +hmm=../../../pocketsphinx/model/hmm/en_US/hub4wsj_sc_8k; +dict=../../psGrammar/dictionary/tobiDic.dic; +jsgf=../../psGrammar/jgerlach_challenge/jgerlach_challenge.jsgf; +rsbscope=/speechrec/psa/jgerlach_challenge; +bestpath=no; +autoload=yes; + +[pocketsphinxinstance] +name=confirm; +hmm=../../../pocketsphinx/model/hmm/en_US/hub4wsj_sc_8k; +dict=../../psGrammar/dictionary/tobiDic.dic; +jsgf=../../psGrammar/confirm/confirm.jsgf; +rsbscope=/speechrec/psa/confirm; +bestpath=no; +autoload=yes; diff --git a/ps-grammar/jgerlach_challenge/jgerlach_challenge.jsgf b/ps-grammar/jgerlach_challenge/jgerlach_challenge.jsgf new file mode 100644 index 00000000..97e0759b --- /dev/null +++ b/ps-grammar/jgerlach_challenge/jgerlach_challenge.jsgf @@ -0,0 +1,5 @@ +#JSGF V1.0; +grammar jgerlach_challenge; +public <roomNT> = (<kitchenNT> | <livingRoomNT>); +<kitchenNT> = [clean up the] kitchen; +<livingRoomNT> = [clean up the] living room; -- GitLab