diff options
author | Kenneth Heafield <github@kheafield.com> | 2012-10-01 09:43:08 -0700 |
---|---|---|
committer | Kenneth Heafield <github@kheafield.com> | 2012-10-01 09:43:08 -0700 |
commit | 1ba2dacb4c9a25b1176af08342b6d12add8e0b0b (patch) | |
tree | f425f6b71ca9c688a3e670126a8d2df36b971acd /klm | |
parent | 3a96fa30bcb01b6693a927832ab282e589d9c226 (diff) | |
parent | c0d96bd312b1b0ddc18b7ca1a3e066923e03b4b8 (diff) |
Merge branch 'master' of github.com:kpu/cdec
Diffstat (limited to 'klm')
-rw-r--r-- | klm/alone/main.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/klm/alone/main.cc b/klm/alone/main.cc index 7768b89c..e09ab01d 100644 --- a/klm/alone/main.cc +++ b/klm/alone/main.cc @@ -29,7 +29,8 @@ template <class Control> void ReadLoop(const std::string &graph_prefix, Control template <class Model> void RunWithModelType(const char *graph_prefix, const char *model_file, StringPiece weight_str, unsigned int pop_limit, unsigned int threads) { Model model(model_file); - search::Config config(weight_str, pop_limit); + search::Weights weights(weight_str); + search::Config config(weights, pop_limit); if (threads > 1) { #ifdef WITH_THREADS |