From 66f9ae6a8ad9400de17ec98fd5ad0d2d52b799e0 Mon Sep 17 00:00:00 2001 From: Leon Ziegler <lziegler@techfak.uni-bielefeld.de> Date: Tue, 1 Apr 2014 18:12:40 +0200 Subject: [PATCH] added open callenge --- .project | 11 +++++++++++ ps-grammar/openChallenge/openChallenge.jsgf | 9 +++++++++ ps-grammar/rsm/rsm.jsgf | 9 +++++++++ 3 files changed, 29 insertions(+) create mode 100644 .project create mode 100644 ps-grammar/openChallenge/openChallenge.jsgf create mode 100644 ps-grammar/rsm/rsm.jsgf diff --git a/.project b/.project new file mode 100644 index 00000000..7d487073 --- /dev/null +++ b/.project @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>SpeechRec</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + </buildSpec> + <natures> + </natures> +</projectDescription> diff --git a/ps-grammar/openChallenge/openChallenge.jsgf b/ps-grammar/openChallenge/openChallenge.jsgf new file mode 100644 index 00000000..39101c41 --- /dev/null +++ b/ps-grammar/openChallenge/openChallenge.jsgf @@ -0,0 +1,9 @@ +#JSGF V1.0; +grammar ToBI_demoChallange; +public <statement> = [tobi] [please] <command> [please] [tobi]; + +<command> = <followMe> | <stop> | <cleanUp> | <grasp>; +<followMe> = follow me; +<stop> = stop [it]; +<cleanUp> = clean [up]; +<grasp> = grasp [object]; diff --git a/ps-grammar/rsm/rsm.jsgf b/ps-grammar/rsm/rsm.jsgf new file mode 100644 index 00000000..be6b7771 --- /dev/null +++ b/ps-grammar/rsm/rsm.jsgf @@ -0,0 +1,9 @@ +#JSGF V1.0; +grammar A4_rsm; +public <rsm> = [the] <furniture> [is] [on] [the] [in] ( <IN_FRONT_OF> | <BEHIND> | <RIGHT_OF> | <LEFT_OF> ) [of] [the] <furniture>; + +<furniture> = ( ( sofa | couch ) | chair | cupboard | shelf | table ) ; +<IN_FRONT_OF> = ( before | front ); +<BEHIND> = ( behind | after ); +<LEFT_OF> = ( left ); +<RIGHT_OF> = ( right ); -- GitLab