diff options
author | Patrick Simianer <p@simianer.de> | 2011-09-24 23:46:49 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2011-09-24 23:46:49 +0200 |
commit | 521e8c49ad529f17f63eca1726ba8e2f564ac290 (patch) | |
tree | c424d8a4aa1ffa9c3ef74cf6b7f1ab91ce8f948e /dtrain/test/cdec_toy/grammar | |
parent | c021d22e98844f1408b8ffb30f3c8e9a3c671899 (diff) |
cleaning up
Diffstat (limited to 'dtrain/test/cdec_toy/grammar')
-rw-r--r-- | dtrain/test/cdec_toy/grammar | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dtrain/test/cdec_toy/grammar b/dtrain/test/cdec_toy/grammar new file mode 100644 index 00000000..aeed75ef --- /dev/null +++ b/dtrain/test/cdec_toy/grammar @@ -0,0 +1,12 @@ +[S] ||| [NP,1] [VP,2] ||| [1] [2] ||| logp=0 +[NP] ||| ich ||| i ||| logp=0 +[NP] ||| ein [NN,1] ||| a [1] ||| logp=0 +[NN] ||| [JJ,1] haus ||| [1] house ||| logp=0 use_house=1 +[NN] ||| [JJ,1] haus ||| [1] shell ||| logp=0 use_shell=1 +[JJ] ||| kleines ||| small ||| logp=0 +[JJ] ||| kleines ||| little ||| logp=0 +[JJ] ||| grosses ||| big ||| logp=0 +[JJ] ||| grosses ||| large ||| logp=0 +[VP] ||| [V,1] [NP,2] ||| [1] [2] ||| logp=0 +[V] ||| sah ||| saw ||| logp=0 +[V] ||| fand ||| found ||| logp=0 |