diff options
author | Patrick Simianer <p@simianer.de> | 2014-06-12 14:29:51 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-06-12 14:29:51 +0200 |
commit | 7d267062cd109ac27cff8a818ff368b949d7f6a0 (patch) | |
tree | 56b043be1e4dd85987b5476644d2f6f7063e8d08 /example/toy | |
parent | a981df066484f799637c8a0b88209110038e3148 (diff) |
cleanup
Diffstat (limited to 'example/toy')
-rw-r--r-- | example/toy/toy.json | 28 | ||||
-rw-r--r-- | example/toy/toy1.json | 33 |
2 files changed, 61 insertions, 0 deletions
diff --git a/example/toy/toy.json b/example/toy/toy.json new file mode 100644 index 0000000..2c05fb0 --- /dev/null +++ b/example/toy/toy.json @@ -0,0 +1,28 @@ +{ +"weights":{ "logp":2.0, "use_shell":1.0 }, +"nodes": +[ +{ "id":0, "cat":"NP", "span":[0,1] }, +{ "id":1, "cat":"V", "span":[1,2] }, +{ "id":2, "cat":"JJ", "span":[3,4] }, +{ "id":3, "cat":"NN", "span":[3,5] }, +{ "id":4, "cat":"NP", "span":[2,5] }, +{ "id":5, "cat":"VP", "span":[1,5] }, +{ "id":6, "cat":"S", "span":[0,5] }, +{ "id":-1, "cat":"root", "span":[-1, -1] } +], +"edges": +[ +{ "head":0, "rule":"[NP] ||| ich ||| i |||", "tails":[-1], "f":{"logp":-0.5, "use_i":1.0} }, +{ "head":1, "rule":"[V] ||| sah ||| saw |||", "tails":[-1], "f":{"logp":-0.25, "use_saw":1.0} }, +{ "head":2, "rule":"[JJ] ||| kleines ||| small |||", "tails":[-1], "f":{"logp":0.0, "use_small":1.0} }, +{ "head":2, "rule":"[JJ] ||| kleines ||| little |||", "tails":[-1], "f":{"logp":0.0, "use_little":1.0} }, +{ "head":3, "rule":"[NN] ||| kleines haus ||| small house |||", "tails":[-1], "f":{"logp":0.0, "use_house":1.0} }, +{ "head":3, "rule":"[NN] ||| kleines haus ||| little house |||", "tails":[-1], "f":{"logp":0.0, "use_house":1.0} }, +{ "head":3, "rule":"[NN] ||| [JJ,0] haus ||| [JJ,1] shell |||", "tails":[2], "f":{"logp":0.0, "use_shell":1.0} }, +{ "head":3, "rule":"[NN] ||| [JJ,0] haus ||| [JJ,1] house |||", "tails":[2], "f":{"logp":0.0, "use_house":1.0} }, +{ "head":4, "rule":"[NP] ||| ein [NN,0] ||| a [NN,1] |||", "tails":[3], "f":{"logp":0.0, "use_a":1.0} }, +{ "head":5, "rule":"[VP] ||| [V,0] [NP,1] ||| [V,1] [NP,2] |||", "tails":[1, 4], "f":{"logp":0.0} }, +{ "head":6, "rule":"[S] ||| [NP,0] [VP,1] ||| [NP,1] [VP,2] |||", "tails":[0, 5], "f":{"logp":0.0} } +] +} diff --git a/example/toy/toy1.json b/example/toy/toy1.json new file mode 100644 index 0000000..c58c249 --- /dev/null +++ b/example/toy/toy1.json @@ -0,0 +1,33 @@ +{ +"weights":{ +"logp":2.0, "use_shell":1.0 +}, +"nodes": +[ +{ "id":-1, "cat":"root", "span":[-1,-1] }, +{ "id":0, "cat":"NP", "span":[0,1] }, +{ "id":1, "cat":"V", "span":[1,2] }, +{ "id":2, "cat":"JJ", "span":[3,4] }, +{ "id":3, "cat":"NN", "span":[3,5] }, +{ "id":4, "cat":"NP", "span":[2,5] }, +{ "id":5, "cat":"VP", "span":[1,5] }, +{ "id":6, "cat":"S", "span":[0,5] }, +{ "id":7, "cat":"Goal", "span":[0,5] } +], +"edges": +[ +{"head":0, "rule":"[NP] ||| ich ||| i ||| logp=-0.5 use_i=1.0", "tails":[ -1 ], "f":{"logp":-0.5, "use_i":1.0}, "weight":0.367879441171 }, +{"head":1, "rule":"[V] ||| sah ||| saw ||| logp=-0.25 use_saw=1.0", "tails":[ -1 ], "f":{"logp":-0.25, "use_saw":1.0}, "weight":0.606530659713 }, +{"head":2, "rule":"[JJ] ||| kleines ||| small ||| logp=0.0 use_small=1.0", "tails":[ -1 ], "f":{"logp":0.0, "use_small":1.0}, "weight":1.0 }, +{"head":2, "rule":"[JJ] ||| kleines ||| little ||| logp=0.0 use_little=1.0", "tails":[ -1 ], "f":{"logp":0.0, "use_little":1.0}, "weight":1.0 }, +{"head":3, "rule":"[NN] ||| kleines haus ||| small house ||| logp=0.0 use_house=1.0", "tails":[ -1 ], "f":{"logp":0.0, "use_house":1.0}, "weight":1.0 }, +{"head":3, "rule":"[NN] ||| kleines haus ||| little house ||| logp=0.0 use_house=1.0", "tails":[ -1 ], "f":{"logp":0.0, "use_house":1.0}, "weight":1.0 }, +{"head":3, "rule":"[NN] ||| [JJ,1] haus ||| [JJ,1] house ||| logp=0.0 use_house=1.0", "tails":[ 2 ], "f":{"logp":0.0, "use_house":1.0}, "weight":1.0 }, +{"head":3, "rule":"[NN] ||| [JJ,1] haus ||| [JJ,1] shell ||| logp=0.0 use_shell=1.0", "tails":[ 2 ], "f":{"logp":0.0, "use_shell":1.0}, "weight":2.71828182846 }, +{"head":4, "rule":"[NP] ||| ein [NN,1] ||| a [NN,1] ||| logp=0.0 use_a=1.0", "tails":[ 3 ], "f":{"logp":0.0, "use_a":1.0}, "weight":1.0 }, +{"head":5, "rule":"[VP] ||| [V,1] [NP,2] ||| [V,1] [NP,2] ||| logp=0.0", "tails":[ 1,4 ], "f":{"logp":0.0}, "weight":1.0 }, +{"head":6, "rule":"[S] ||| [NP,1] [VP,2] ||| [VP,1] [NP,2] ||| logp=0.0", "tails":[ 0,5 ], "f":{"logp":0.0}, "weight":1.0 }, +{"head":7, "rule":"[Goal] ||| [S,1] ||| [S,1] ||| ", "tails":[ 6 ], "f":{}, "weight":1.0 } +] +} + |