2015-02-05 22:35:49 +03:00
|
|
|
// $Id: ExportInterface.cpp 3045 2010-04-05 13:07:29Z hieuhoang1972 $
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
Moses - factored phrase-based language decoder
|
|
|
|
Copyright (C) 2009 University of Edinburgh
|
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Moses interface for main function, for single-threaded and multi-threaded.
|
|
|
|
**/
|
|
|
|
#include <exception>
|
|
|
|
#include <fstream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <vector>
|
|
|
|
|
2015-04-23 15:27:21 +03:00
|
|
|
#include "util/random.hh"
|
2015-02-05 22:35:49 +03:00
|
|
|
#include "util/usage.hh"
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
// Include Visual Leak Detector
|
|
|
|
//#include <vld.h>
|
|
|
|
#endif
|
|
|
|
|
2015-03-07 02:37:07 +03:00
|
|
|
|
2015-02-05 22:35:49 +03:00
|
|
|
#include "Hypothesis.h"
|
|
|
|
#include "Manager.h"
|
|
|
|
#include "StaticData.h"
|
|
|
|
#include "TypeDef.h"
|
|
|
|
#include "Util.h"
|
|
|
|
#include "Timer.h"
|
|
|
|
#include "TranslationModel/PhraseDictionary.h"
|
|
|
|
#include "FF/StatefulFeatureFunction.h"
|
|
|
|
#include "FF/StatelessFeatureFunction.h"
|
|
|
|
#include "TranslationTask.h"
|
2015-03-07 02:37:07 +03:00
|
|
|
#include "ExportInterface.h"
|
2015-02-05 22:35:49 +03:00
|
|
|
|
|
|
|
#ifdef HAVE_PROTOBUF
|
|
|
|
#include "hypergraph.pb.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PT_UG
|
|
|
|
#include <boost/foreach.hpp>
|
|
|
|
#include "TranslationModel/UG/mmsapt.h"
|
|
|
|
#include "TranslationModel/UG/generic/program_options/ug_splice_arglist.h"
|
|
|
|
#endif
|
|
|
|
|
2015-03-07 02:37:07 +03:00
|
|
|
#include "ExportInterface.h"
|
2015-03-04 03:07:11 +03:00
|
|
|
#ifdef HAVE_XMLRPC_C
|
|
|
|
#include <xmlrpc-c/base.hpp>
|
|
|
|
#include <xmlrpc-c/registry.hpp>
|
|
|
|
#include <xmlrpc-c/server_abyss.hpp>
|
|
|
|
#include "server/Translator.h"
|
|
|
|
#include "server/Optimizer.h"
|
|
|
|
#include "server/Updater.h"
|
|
|
|
#endif
|
|
|
|
|
2015-02-05 22:35:49 +03:00
|
|
|
using namespace std;
|
|
|
|
using namespace Moses;
|
|
|
|
|
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
void OutputFeatureWeightsForHypergraph(std::ostream &outputSearchGraphStream)
|
|
|
|
{
|
|
|
|
outputSearchGraphStream.setf(std::ios::fixed);
|
|
|
|
outputSearchGraphStream.precision(6);
|
|
|
|
StaticData::Instance().GetAllWeights().Save(outputSearchGraphStream);
|
|
|
|
}
|
2015-03-12 00:43:48 +03:00
|
|
|
} //namespace Moses
|
2015-03-07 02:37:07 +03:00
|
|
|
|
|
|
|
SimpleTranslationInterface::SimpleTranslationInterface(const string &mosesIni): m_staticData(StaticData::Instance())
|
|
|
|
{
|
2015-05-02 13:45:24 +03:00
|
|
|
if (!m_params.LoadParam(mosesIni)) {
|
|
|
|
cerr << "Error; Cannot load parameters at " << mosesIni<<endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (!StaticData::LoadDataStatic(&m_params, mosesIni.c_str())) {
|
|
|
|
cerr << "Error; Cannot load static data in file " << mosesIni<<endl;
|
|
|
|
exit(1);
|
|
|
|
}
|
2015-03-07 02:37:07 +03:00
|
|
|
|
2015-05-02 13:45:24 +03:00
|
|
|
util::rand_init();
|
2015-03-07 02:37:07 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleTranslationInterface::~SimpleTranslationInterface()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//the simplified version of string input/output translation
|
|
|
|
string SimpleTranslationInterface::translate(const string &inputString)
|
|
|
|
{
|
2015-03-21 19:12:52 +03:00
|
|
|
boost::shared_ptr<Moses::IOWrapper> ioWrapper(new IOWrapper);
|
2015-03-07 02:37:07 +03:00
|
|
|
// main loop over set of input sentences
|
|
|
|
size_t sentEnd = inputString.rfind('\n'); //find the last \n, the input stream has to be appended with \n to be translated
|
|
|
|
const string &newString = sentEnd != string::npos ? inputString : inputString + '\n';
|
|
|
|
|
|
|
|
istringstream inputStream(newString); //create the stream for the interface
|
2015-03-21 19:12:52 +03:00
|
|
|
ioWrapper->SetInputStreamFromString(inputStream);
|
2015-03-07 02:37:07 +03:00
|
|
|
ostringstream outputStream;
|
2015-03-21 19:12:52 +03:00
|
|
|
ioWrapper->SetOutputStream2SingleBestOutputCollector(&outputStream);
|
2015-03-07 02:37:07 +03:00
|
|
|
|
2015-03-21 19:12:52 +03:00
|
|
|
boost::shared_ptr<InputType> source = ioWrapper->ReadInput();
|
|
|
|
if (!source) return "Error: Source==null!!!";
|
2015-05-02 13:45:24 +03:00
|
|
|
IFVERBOSE(1) {
|
|
|
|
ResetUserTime();
|
|
|
|
}
|
2015-03-21 19:12:52 +03:00
|
|
|
|
|
|
|
// set up task of translating one sentence
|
2015-04-30 08:05:11 +03:00
|
|
|
boost::shared_ptr<TranslationTask> task
|
2015-05-02 13:45:24 +03:00
|
|
|
= TranslationTask::create(source, ioWrapper);
|
2015-03-21 19:12:52 +03:00
|
|
|
task->Run();
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-03-21 19:12:52 +03:00
|
|
|
string output = outputStream.str();
|
|
|
|
//now trim the end whitespace
|
|
|
|
const string whitespace = " \t\f\v\n\r";
|
|
|
|
size_t end = output.find_last_not_of(whitespace);
|
2015-03-07 02:37:07 +03:00
|
|
|
return output.erase(end + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
Moses::StaticData& SimpleTranslationInterface::getStaticData()
|
|
|
|
{
|
|
|
|
return StaticData::InstanceNonConst();
|
|
|
|
}
|
|
|
|
void SimpleTranslationInterface::DestroyFeatureFunctionStatic()
|
|
|
|
{
|
|
|
|
FeatureFunction::Destroy();
|
|
|
|
}
|
2015-02-05 22:35:49 +03:00
|
|
|
|
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
Parameter params;
|
2015-02-05 22:35:49 +03:00
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
//! run moses in server mode
|
|
|
|
int
|
|
|
|
run_as_server()
|
|
|
|
{
|
|
|
|
#ifdef HAVE_XMLRPC_C
|
2015-05-02 13:45:24 +03:00
|
|
|
int port;
|
|
|
|
params.SetParameter(port, "server-port", 8080);
|
|
|
|
bool isSerial;
|
|
|
|
params.SetParameter(isSerial, "serial", false);
|
|
|
|
string logfile;
|
|
|
|
params.SetParameter(logfile, "server-log", string(""));
|
|
|
|
size_t num_threads;
|
|
|
|
params.SetParameter(num_threads, "threads", size_t(10));
|
2015-03-04 03:07:11 +03:00
|
|
|
if (isSerial) VERBOSE(1,"Running server in serial mode." << endl);
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
xmlrpc_c::registry myRegistry;
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-03-18 16:46:15 +03:00
|
|
|
xmlrpc_c::methodPtr const translator(new MosesServer::Translator(num_threads));
|
|
|
|
xmlrpc_c::methodPtr const updater(new MosesServer::Updater);
|
|
|
|
xmlrpc_c::methodPtr const optimizer(new MosesServer::Optimizer);
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
myRegistry.addMethod("translate", translator);
|
|
|
|
myRegistry.addMethod("updater", updater);
|
|
|
|
myRegistry.addMethod("optimize", optimizer);
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
xmlrpc_c::serverAbyss myAbyssServer(myRegistry, port, logfile);
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
XVERBOSE(1,"Listening on port " << port << endl);
|
2015-05-02 13:45:24 +03:00
|
|
|
if (isSerial) {
|
|
|
|
while(1) myAbyssServer.runOnce();
|
|
|
|
} else myAbyssServer.run();
|
2015-03-04 03:07:11 +03:00
|
|
|
|
|
|
|
std::cerr << "xmlrpc_c::serverAbyss.run() returned but should not." << std::endl;
|
2015-04-30 08:05:11 +03:00
|
|
|
// #pragma message("BUILDING MOSES WITH SERVER SUPPORT")
|
2015-03-04 03:07:11 +03:00
|
|
|
#else
|
2015-04-30 08:05:11 +03:00
|
|
|
// #pragma message("BUILDING MOSES WITHOUT SERVER SUPPORT")
|
|
|
|
std::cerr << "Moses was compiled without server support." << endl;
|
2015-03-04 03:07:11 +03:00
|
|
|
#endif
|
|
|
|
return 1;
|
2015-02-05 22:35:49 +03:00
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
}
|
2015-02-05 22:35:49 +03:00
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
int
|
|
|
|
batch_run()
|
|
|
|
{
|
|
|
|
// shorthand for accessing information in StaticData
|
|
|
|
const StaticData& staticData = StaticData::Instance();
|
|
|
|
|
|
|
|
//initialise random numbers
|
2015-04-23 15:27:21 +03:00
|
|
|
util::rand_init();
|
2015-03-04 03:07:11 +03:00
|
|
|
|
|
|
|
IFVERBOSE(1) PrintUserTime("Created input-output object");
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-03-21 19:12:52 +03:00
|
|
|
// set up read/writing class:
|
2015-04-30 08:05:11 +03:00
|
|
|
boost::shared_ptr<IOWrapper> ioWrapper(new IOWrapper);
|
2015-03-04 03:07:11 +03:00
|
|
|
UTIL_THROW_IF2(ioWrapper == NULL, "Error; Failed to create IO object"
|
2015-05-02 13:45:24 +03:00
|
|
|
<< " [" << HERE << "]");
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
// check on weights
|
|
|
|
const ScoreComponentCollection& weights = staticData.GetAllWeights();
|
2015-05-02 13:45:24 +03:00
|
|
|
IFVERBOSE(2) {
|
|
|
|
TRACE_ERR("The global weight vector looks like this: ");
|
|
|
|
TRACE_ERR(weights);
|
|
|
|
TRACE_ERR("\n");
|
|
|
|
}
|
2015-02-05 22:35:49 +03:00
|
|
|
|
|
|
|
#ifdef WITH_THREADS
|
2015-03-04 03:07:11 +03:00
|
|
|
ThreadPool pool(staticData.ThreadCount());
|
2015-02-05 22:35:49 +03:00
|
|
|
#endif
|
|
|
|
|
2015-04-03 18:16:52 +03:00
|
|
|
std::string context_string;
|
|
|
|
params.SetParameter(context_string,"context-string",string(""));
|
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
// main loop over set of input sentences
|
2015-03-21 19:12:52 +03:00
|
|
|
|
|
|
|
boost::shared_ptr<InputType> source;
|
2015-05-02 13:45:24 +03:00
|
|
|
while ((source = ioWrapper->ReadInput()) != NULL) {
|
|
|
|
IFVERBOSE(1) ResetUserTime();
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-05-02 13:45:24 +03:00
|
|
|
// set up task of translating one sentence
|
|
|
|
boost::shared_ptr<TranslationTask>
|
|
|
|
task = TranslationTask::create(source, ioWrapper);
|
2015-05-13 13:05:43 +03:00
|
|
|
if (source->GetContext())
|
2015-05-11 02:34:24 +03:00
|
|
|
task->SetContextString(*source->GetContext());
|
|
|
|
else task->SetContextString(context_string);
|
2015-02-05 22:35:49 +03:00
|
|
|
|
2015-05-02 13:45:24 +03:00
|
|
|
// Allow for (sentence-)context-specific processing prior to
|
|
|
|
// decoding. This can be used, for example, for context-sensitive
|
|
|
|
// phrase lookup.
|
|
|
|
FeatureFunction::SetupAll(*task);
|
2015-03-21 20:09:41 +03:00
|
|
|
|
2015-05-02 13:45:24 +03:00
|
|
|
// execute task
|
2015-02-05 22:35:49 +03:00
|
|
|
#ifdef WITH_THREADS
|
|
|
|
#ifdef PT_UG
|
2015-05-02 13:45:24 +03:00
|
|
|
// simulated post-editing requires threads (within the dynamic phrase tables)
|
|
|
|
// but runs all sentences serially, to allow updating of the bitext.
|
|
|
|
bool spe = params.isParamSpecified("spe-src");
|
|
|
|
if (spe) {
|
|
|
|
// simulated post-editing: always run single-threaded!
|
|
|
|
task->Run();
|
|
|
|
string src,trg,aln;
|
|
|
|
UTIL_THROW_IF2(!getline(*ioWrapper->spe_src,src), "[" << HERE << "] "
|
|
|
|
<< "missing update data for simulated post-editing.");
|
|
|
|
UTIL_THROW_IF2(!getline(*ioWrapper->spe_trg,trg), "[" << HERE << "] "
|
|
|
|
<< "missing update data for simulated post-editing.");
|
|
|
|
UTIL_THROW_IF2(!getline(*ioWrapper->spe_aln,aln), "[" << HERE << "] "
|
|
|
|
<< "missing update data for simulated post-editing.");
|
|
|
|
BOOST_FOREACH (PhraseDictionary* pd, PhraseDictionary::GetColl()) {
|
|
|
|
Mmsapt* sapt = dynamic_cast<Mmsapt*>(pd);
|
|
|
|
if (sapt) sapt->add(src,trg,aln);
|
|
|
|
VERBOSE(1,"[" << HERE << " added src] " << src << endl);
|
|
|
|
VERBOSE(1,"[" << HERE << " added trg] " << trg << endl);
|
|
|
|
VERBOSE(1,"[" << HERE << " added aln] " << aln << endl);
|
|
|
|
}
|
|
|
|
} else pool.Submit(task);
|
2015-03-04 03:07:11 +03:00
|
|
|
#else
|
2015-05-02 13:45:24 +03:00
|
|
|
pool.Submit(task);
|
2015-03-04 03:07:11 +03:00
|
|
|
|
2015-02-05 22:35:49 +03:00
|
|
|
#endif
|
|
|
|
#else
|
2015-05-02 13:45:24 +03:00
|
|
|
task->Run();
|
2015-02-05 22:35:49 +03:00
|
|
|
#endif
|
2015-05-02 13:45:24 +03:00
|
|
|
}
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
// we are done, finishing up
|
2015-02-05 22:35:49 +03:00
|
|
|
#ifdef WITH_THREADS
|
2015-03-04 03:07:11 +03:00
|
|
|
pool.Stop(true); //flush remaining jobs
|
2015-02-05 22:35:49 +03:00
|
|
|
#endif
|
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
FeatureFunction::Destroy();
|
2015-02-05 22:35:49 +03:00
|
|
|
|
|
|
|
IFVERBOSE(1) util::PrintUsage(std::cerr);
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-02-05 22:35:49 +03:00
|
|
|
#ifndef EXIT_RETURN
|
|
|
|
//This avoids that destructors are called (it can take a long time)
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
#else
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-03-04 03:07:11 +03:00
|
|
|
/** Called by main function of the command line version of the decoder **/
|
|
|
|
int decoder_main(int argc, char** argv)
|
|
|
|
{
|
2015-04-29 22:07:03 +03:00
|
|
|
#ifdef NDEBUG
|
|
|
|
try
|
|
|
|
#endif
|
2015-05-02 13:45:24 +03:00
|
|
|
{
|
2015-03-04 03:07:11 +03:00
|
|
|
#ifdef HAVE_PROTOBUF
|
2015-05-02 13:45:24 +03:00
|
|
|
GOOGLE_PROTOBUF_VERIFY_VERSION;
|
2015-03-04 03:07:11 +03:00
|
|
|
#endif
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-05-02 13:45:24 +03:00
|
|
|
// echo command line, if verbose
|
|
|
|
IFVERBOSE(1) {
|
|
|
|
TRACE_ERR("command: ");
|
|
|
|
for(int i=0; i<argc; ++i) TRACE_ERR(argv[i]<<" ");
|
|
|
|
TRACE_ERR(endl);
|
|
|
|
}
|
|
|
|
|
|
|
|
// set number of significant decimals in output
|
|
|
|
FixPrecision(cout);
|
|
|
|
FixPrecision(cerr);
|
2015-04-30 08:05:11 +03:00
|
|
|
|
2015-05-02 13:45:24 +03:00
|
|
|
// load all the settings into the Parameter class
|
|
|
|
// (stores them as strings, or array of strings)
|
|
|
|
if (!params.LoadParam(argc,argv))
|
|
|
|
exit(1);
|
|
|
|
|
|
|
|
// initialize all "global" variables, which are stored in StaticData
|
|
|
|
// note: this also loads models such as the language model, etc.
|
|
|
|
if (!StaticData::LoadDataStatic(¶ms, argv[0]))
|
|
|
|
exit(1);
|
|
|
|
|
|
|
|
// setting "-show-weights" -> just dump out weights and exit
|
|
|
|
if (params.isParamSpecified("show-weights")) {
|
|
|
|
ShowWeights();
|
|
|
|
exit(0);
|
2015-04-30 08:05:11 +03:00
|
|
|
}
|
2015-05-02 13:45:24 +03:00
|
|
|
|
|
|
|
if (params.GetParam("server"))
|
|
|
|
return run_as_server();
|
|
|
|
else
|
|
|
|
return batch_run();
|
|
|
|
|
|
|
|
}
|
2015-04-29 22:07:03 +03:00
|
|
|
#ifdef NDEBUG
|
2015-05-02 13:45:24 +03:00
|
|
|
catch (const std::exception &e) {
|
|
|
|
std::cerr << "Exception: " << e.what() << std::endl;
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2015-04-29 22:07:03 +03:00
|
|
|
#endif
|
2015-03-04 03:07:11 +03:00
|
|
|
}
|
|
|
|
|