[Moses-support] Fwd: moses using cpp help

2015-10-26 Thread Apurva Joshi
-- Forwarded message -- From: Apurva Joshi Date: Mon, Oct 26, 2015 at 12:40 PM Subject: moses using cpp help To: David Madl hello, plz help...m really confused...i want to access *bestHypo in Manager.cpp to get best op

Re: [Moses-support] OD: lmplz error

2015-10-26 Thread Marcin Junczys-Dowmunt
Actually, is there any good reason to have this option not enabled by default? W dniu 26.10.2015 o 08:52, Marcin Junczys-Dowmunt pisze: This particular error does not indicate singletons, there is a different error message for that. Sometimes discounts are just weird. Kneser-Ney smoohting

Re: [Moses-support] Easy setup of moses infrastructure

2015-10-26 Thread Ulrich Germann
Follow up: As Christian Buck points out: "At least automake and libtool are non-standard and weird errors occur without them." He recommends: sudo apt-get install build-essential git-core pkg-config automake libtool Thanks, Christian! - Uli On Mon, Oct 26, 2015 at 6:46 PM, Ulrich Germann

[Moses-support] Easy setup of moses infrastructure

2015-10-26 Thread Ulrich Germann
Hi all, in order to facilitate easy setup and building of Moses, I have added the following: contrib/Makefiles/install-dependencies.gmake Run with make like this: make -f contrib/Makefiles/install-dependencies.gmake This will install boost, xmlrpc-c, cmph, and irstlm in ./opt. Regression

[Moses-support] undefined reference to `Moses::Parameter::LoadParam(int, char**)'

2015-10-26 Thread Apurva Joshi
hello all, following is my program.. m executing one step at a time from moses-cmd/src/main.cpp #include #include #include #include #include #include"ThreadPool.h" #include"OutputCollector.h" #include"Parameter.h" using namespace std; using namespace Moses; using namespace std; class

Re: [Moses-support] undefined reference to `Moses::Parameter::LoadParam(int, char**)'

2015-10-26 Thread Jeroen Vermeulen
Sounds like you're not linking to the object file generated from Parameter.cpp. Jeroen On October 26, 2015 7:28:52 PM GMT+07:00, Apurva Joshi wrote: >hello all, following is my program.. m executing one step at a time >from moses-cmd/src/main.cpp > >#include