summaryrefslogtreecommitdiff
path: root/pro-train/mr_pro_reduce.cc
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2011-09-14 14:47:06 +0100
committerChris Dyer <cdyer@cs.cmu.edu>2011-09-14 14:47:06 +0100
commit9acb1f98b698f9fd0c09f6b7c122011651dcc435 (patch)
treec04cf62e60462d640a42f42f2ac2db19ef3b0169 /pro-train/mr_pro_reduce.cc
parentfc5c72f9c5ce60c5d9a3dcd363eb51ccdd543bc9 (diff)
fix for more problems caused by hash refactoring
Diffstat (limited to 'pro-train/mr_pro_reduce.cc')
-rw-r--r--pro-train/mr_pro_reduce.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/pro-train/mr_pro_reduce.cc b/pro-train/mr_pro_reduce.cc
index 6b491918..aff410a0 100644
--- a/pro-train/mr_pro_reduce.cc
+++ b/pro-train/mr_pro_reduce.cc
@@ -218,6 +218,10 @@ int main(int argc, char** argv) {
vector<weight_t> x, prev_x; // x[0] is bias
if (conf.count("weights")) {
Weights::InitFromFile(conf["weights"].as<string>(), &x);
+ x.resize(FD::NumFeats());
+ prev_x = x;
+ } else {
+ x.resize(FD::NumFeats());
prev_x = x;
}
cerr << " Number of features: " << x.size() << endl;