fixed bug
Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua-site/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua-site/commit/43424bff Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua-site/tree/43424bff Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua-site/diff/43424bff Branch: refs/heads/master Commit: 43424bff1326eeb45273e1d543da4d98135bded9 Parents: 31ba97f Author: Matt Post <[email protected]> Authored: Mon May 18 15:42:44 2015 -0400 Committer: Matt Post <[email protected]> Committed: Mon May 18 15:42:44 2015 -0400 ---------------------------------------------------------------------- 6.0/bundle.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-joshua-site/blob/43424bff/6.0/bundle.md ---------------------------------------------------------------------- diff --git a/6.0/bundle.md b/6.0/bundle.md index 48d356b..cc3b8a9 100644 --- a/6.0/bundle.md +++ b/6.0/bundle.md @@ -55,12 +55,9 @@ Here is an example invocation: /path/to/rundir/test/1/joshua.config \ language-pack-YYYY-MM-DD \ --root /path/to/rundir \ - --tm "pt /path/to/rundir/grammar.gz" \ - --pack-tm \ + --pack-tm /path/to/rundir/grammar.gz \ --copy-config-options \ - '-top-n 1 \ - -output-format %S \ - -mark-oovs false' \ + '-top-n 1 -output-format %S -mark-oovs false' \ --server-port 5674 The copy config options tell the decoder to present just the @@ -71,7 +68,9 @@ to OOVs (`-mark-oovs false`), and to use the grammar [this page](decoder.html) for a longer list of decoder options. The `--pack-tm` option tells the run bundler to -[pack the grammar](packing.html), which can take some time. +[pack the grammar](packing.html), which can take some time. Since it +is the first of any `--[pack-]tm` arguments, it applies to the first +TM encountered in the config file. A new directory `language-pack-YYYY-MM-DD` will be created along with a README and a number of support files.
