fixed download command
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/81748f5b Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua-site/tree/81748f5b Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua-site/diff/81748f5b Branch: refs/heads/master Commit: 81748f5b7abd7b76a372c212135610ca9a5a1b2a Parents: 509371a Author: Matt Post <[email protected]> Authored: Wed May 20 21:53:35 2015 -0400 Committer: Matt Post <[email protected]> Committed: Wed May 20 21:53:35 2015 -0400 ---------------------------------------------------------------------- 6.0/install.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-joshua-site/blob/81748f5b/6.0/install.md ---------------------------------------------------------------------- diff --git a/6.0/install.md b/6.0/install.md index f6165e5..df187e5 100644 --- a/6.0/install.md +++ b/6.0/install.md @@ -11,13 +11,13 @@ install the decoder. There are no external dependencies. 1. Download Joshua - curl -#L http://joshua-decoder.org/releases/6.0 > joshua-v6.0.tgz + wget -q http://cs.jhu.edu/~post/joshua-v{{ site.data.joshua.release_version }}.tgz 1. Next, unpack it, set environment variables, and compile everything. You need to define the `$JOSHUA` environment variable (which in turn requires `$JAVA_HOME`). - tar xzf joshua-v6.0.tgz - cd joshua-v6.0 + tar xzf joshua-v{{ site.data.joshua.release_version }}.tgz + cd joshua-v{{ site.data.joshua.release_version }} # for bash export JAVA_HOME=/path/to/java @@ -39,19 +39,19 @@ If you wish to build models for new language pairs from existing data (such as the [WMT data](http://statmt.org/wmt14/)), you need to install some additional dependencies. -1. For learning hierarchical models, Joshua includes a tool called [Thrax](/6.0/thrax.html), which +1. For learning hierarchical models, Joshua includes a tool called [Thrax](thrax.html), which is built on Hadoop. If you have a Hadoop installation, make sure that the environment variable `$HADOOP` is set and points to it. If you don't, Joshua will roll one out for you in standalone mode. Hadoop is only needed if you plan to build new models with Joshua. 1. You will need to install Moses if either of the following applies to you: - - You wish to build [phrase-based models](/6.0/phrase.html) (Joshua 6.0 includes a phrase-based + - You wish to build [phrase-based models](phrase.html) (Joshua 6 includes a phrase-based decoder, but not the tools for building such a model) - You are building your own models (phrase- or syntax-based) and wish to use Cherry & Foster's [batch MIRA tuner](http://aclweb.org/anthology-new/N/N12/N12-1047v2.pdf) instead of the included -MERT implementation, [Z-MERT](/6.0/zmert.html). +MERT implementation, [Z-MERT](zmert.html). Follow [the instructions for installing Moses here](http://www.statmt.org/moses/?n=Development.GetStarted), and then define the `$MOSES`
