Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHieu Hoang <fishandfrolick@gmail.com>2012-06-05 21:15:43 +0400
committerHieu Hoang <fishandfrolick@gmail.com>2012-06-05 21:15:43 +0400
commit86a1886cb49fa98aa83e93d03bb53e79dba1f0ca (patch)
treef3e448408957de45409fc4ab11a61cf597b74c3d
parenta7964e02abccba838e7db1c4bdcebb65edb53c74 (diff)
get rid of mention of --with-giza arg
-rw-r--r--BUILD-INSTRUCTIONS.txt3
-rw-r--r--Jamroot4
-rw-r--r--scripts/Jamfile2
3 files changed, 2 insertions, 7 deletions
diff --git a/BUILD-INSTRUCTIONS.txt b/BUILD-INSTRUCTIONS.txt
index 0fd1ed4e1..5b4ec2565 100644
--- a/BUILD-INSTRUCTIONS.txt
+++ b/BUILD-INSTRUCTIONS.txt
@@ -8,7 +8,7 @@ available at http://boost.org .
There are several optional dependencies:
-GIZA++ from http://code.google.com/p/giza-pp/ is used to build phrase tables.
+GIZA++ from http://code.google.com/p/giza-pp/ is used to align words in the parallel corpus during training.
Moses server requires xmlrpc-c with abyss-server. Source is available from
http://xmlrpc-c.sourceforge.net/.
@@ -85,7 +85,6 @@ Building consists of running
Common options are:
--with-srilm=/path/to/srilm to compile the decoder with SRILM support
--with-irstlm=/path/to/irstlm to compile the decoder with IRSTLM support
---with-giza=/path/to/giza to enable training scripts
-jN where N is the number of CPUs
--with-macports=/path/to/macports use MacPorts on Mac OS X.
diff --git a/Jamroot b/Jamroot
index 6190ef77f..a4726e589 100644
--- a/Jamroot
+++ b/Jamroot
@@ -15,10 +15,6 @@
#Note that, like language models, this is the --prefix where the library was
#installed, not some executable within the library.
#
-#--with-giza=/path/to/giza
-#Indicates where binaries GIZA++, snt2cooc.out, and mkcls live.
-#Builds scripts/training/train-model.perl using these paths.
-#
#Thread-caching malloc (optional):
#--with-tcmalloc
#
diff --git a/scripts/Jamfile b/scripts/Jamfile
index df9a4dfcf..8df468737 100644
--- a/scripts/Jamfile
+++ b/scripts/Jamfile
@@ -26,7 +26,7 @@ if $(with-giza) {
check-for-bin mkcls ;
} else {
if $(CLEANING) = no {
- echo "If you want scripts/training/train-model.perl, pass --with-giza=/path/to/giza-pp" ;
+ #echo "If you want scripts/training/train-model.perl, pass --with-giza=/path/to/giza-pp" ;
}
constant WITH-GIZA : "no" ;
}