summaryrefslogtreecommitdiff
path: root/decoder
diff options
context:
space:
mode:
authorJonathan Clark <jon.h.clark@gmail.com>2011-05-03 12:13:39 -0400
committerJonathan Clark <jon.h.clark@gmail.com>2011-05-03 12:13:39 -0400
commit256dfe09345418962241f83e9bff9b4b4bba7e92 (patch)
treea9360f930376edf2e843f3b38a7ae45913eb1f66 /decoder
parentae556ddeb17a9bd541cdaa7b19ba41773c91a5af (diff)
parent7892b332a583d235fd339de86df8ee6f5d8209f4 (diff)
Merge branch 'master' of github.com:redpony/cdec
Diffstat (limited to 'decoder')
-rw-r--r--decoder/decoder.cc5
-rw-r--r--decoder/ff.h3
2 files changed, 7 insertions, 1 deletions
diff --git a/decoder/decoder.cc b/decoder/decoder.cc
index 0d7e84ad..d8dd0c61 100644
--- a/decoder/decoder.cc
+++ b/decoder/decoder.cc
@@ -176,8 +176,11 @@ struct DecoderImpl {
bool Decode(const string& input, DecoderObserver*);
void SetWeights(const vector<double>& weights) {
init_weights = weights;
- for (int i = 0; i < rescoring_passes.size(); ++i)
+ for (int i = 0; i < rescoring_passes.size(); ++i) {
+ if (rescoring_passes[i].models)
+ rescoring_passes[i].models->SetWeights(weights);
rescoring_passes[i].weight_vector = weights;
+ }
}
void SetId(int next_sent_id) { sent_id = next_sent_id - 1; }
diff --git a/decoder/ff.h b/decoder/ff.h
index 89b8b067..c3aa9b6d 100644
--- a/decoder/ff.h
+++ b/decoder/ff.h
@@ -264,6 +264,9 @@ class ModelSet {
ModelSet(const std::vector<double>& weights,
const std::vector<const FeatureFunction*>& models);
+ // TODO stop stupid copy
+ void SetWeights(const std::vector<double>& w) { weights_ = w; }
+
// sets edge->feature_values_ and edge->edge_prob_
// NOTE: edge must not necessarily be in hg.edges_ but its TAIL nodes
// must be. edge features are supposed to be overwritten, not added to (possibly because rule features aren't in ModelSet so need to be left alone