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
path: root/moses
diff options
context:
space:
mode:
authorOliver Wilson <oliver.wilson@ed.ac.uk>2012-04-02 20:21:38 +0400
committerOliver Wilson <oliver.wilson@ed.ac.uk>2012-04-02 20:21:38 +0400
commit0aac1865d99113df8bee60b0fab9834d8827d621 (patch)
tree43a16cfd870b5bad50dc10037b6e00e296e0a0a1 /moses
parent430b720084e1a7de43b1b27b181a00ab7af04c7b (diff)
Use networked implementation of LDHT instead of the local version.
Diffstat (limited to 'moses')
-rw-r--r--moses/src/LM/LDHT.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/moses/src/LM/LDHT.cpp b/moses/src/LM/LDHT.cpp
index 0c61235b8..66bb58da3 100644
--- a/moses/src/LM/LDHT.cpp
+++ b/moses/src/LM/LDHT.cpp
@@ -131,8 +131,8 @@ LDHT::Client* LanguageModelLDHT::initTSSClient() {
LDHT::FactoryCollection::createDefaultFactoryCollection();
LDHT::Client* client;
- client = new LDHT::ClientLocal();
- //client = new LDHT::Client();
+ //client = new LDHT::ClientLocal();
+ client = new LDHT::Client();
client->fromXmlFiles(*factory_collection,
ldht_config_path,
ldhtlm_config_path);