summaryrefslogtreecommitdiff
path: root/decoder/ffset.h
diff options
context:
space:
mode:
authorChris Dyer <redpony@gmail.com>2014-12-17 15:03:48 -0500
committerChris Dyer <redpony@gmail.com>2014-12-17 15:03:48 -0500
commit1a79175f9a101d46cf27ca921213d5dd9300518f (patch)
tree9197105a2f55bc59649c555a1064628c1420bd4d /decoder/ffset.h
parent448b451aa481b1509566ddb11abc3476466def6a (diff)
parentd2c51ae79bca9b7c87f87ff458f77a6f07fff9a6 (diff)
Merge pull request #61 from kho/ignore_state
Add IgnoredStateSize() to FeatureFunction
Diffstat (limited to 'decoder/ffset.h')
-rw-r--r--decoder/ffset.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/decoder/ffset.h b/decoder/ffset.h
index b7322ee2..84f9fdb9 100644
--- a/decoder/ffset.h
+++ b/decoder/ffset.h
@@ -1,6 +1,7 @@
#ifndef FFSET_H_
#define FFSET_H_
+#include <utility>
#include <vector>
#include "value_array.h"
#include "prob.h"
@@ -47,11 +48,18 @@ class ModelSet {
bool stateless() const { return !state_size_; }
+ // Part of a feature state may be used for storing some side data for
+ // calculating feature values but not necessary for splitting hypernodes. Such
+ // bytes needs to be erased for hypernode splitting.
+ bool NeedsStateErasure() const;
+ void EraseIgnoredBytes(FFState* state) const;
+
private:
std::vector<const FeatureFunction*> models_;
const std::vector<double>& weights_;
int state_size_;
std::vector<int> model_state_pos_;
+ std::vector<std::pair<int, int> > ranges_to_erase_;
};
#endif