diff options
| author | pks <pks@users.noreply.github.com> | 2026-02-27 12:09:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-27 12:09:49 +0100 |
| commit | e7189f97ec29bd576fe79a260fa0e8cd25dcc968 (patch) | |
| tree | 227bc72ff0f7f72b8c6b3e6f735d922dd13da147 /example/toy-reorder/grammar | |
| parent | c13b5650ac4bee7e674d263fcb778599bb449bff (diff) | |
| parent | 1377ffbdd2791e50cb3ca21d11c8c21febdbf911 (diff) | |
Claude
Diffstat (limited to 'example/toy-reorder/grammar')
| -rw-r--r-- | example/toy-reorder/grammar | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/example/toy-reorder/grammar b/example/toy-reorder/grammar new file mode 100644 index 0000000..d93d98c --- /dev/null +++ b/example/toy-reorder/grammar @@ -0,0 +1,6 @@ +[S] ||| [NP,1] [VP,2] ||| [NP,1] [VP,2] ||| logp=0 +[NP] ||| er ||| he ||| logp=-0.5 +[NP] ||| das [NN,1] ||| the [NN,1] ||| logp=0 +[NN] ||| buch ||| book ||| logp=0 +[VP] ||| [NP,1] [V,2] ||| [V,2] [NP,1] ||| logp=0 +[V] ||| liest ||| reads ||| logp=-0.25 |
