summaryrefslogtreecommitdiff
path: root/decoder/ff_context.h
diff options
context:
space:
mode:
authorWaleed Ammar <wammar@cs.cmu.edu>2012-06-16 05:35:49 -0400
committerWaleed Ammar <wammar@cs.cmu.edu>2012-06-16 05:35:49 -0400
commit21bed034628ae5e0e51a5dae6db0427ec1fd2e47 (patch)
tree527fab1b2677e8db3210692eb8bd8e56b2ffa371 /decoder/ff_context.h
parent3acdf1e4b37637d6df86a7b54fb0f1b0464c172b (diff)
enable regex-based feature templates
Diffstat (limited to 'decoder/ff_context.h')
-rw-r--r--decoder/ff_context.h29
1 files changed, 26 insertions, 3 deletions
diff --git a/decoder/ff_context.h b/decoder/ff_context.h
index 0d22b027..89bcb557 100644
--- a/decoder/ff_context.h
+++ b/decoder/ff_context.h
@@ -1,23 +1,46 @@
+
#ifndef _FF_CONTEXT_H_
#define _FF_CONTEXT_H_
#include <vector>
+#include <boost/xpressive/xpressive.hpp>
#include "ff.h"
+using namespace boost::xpressive;
+using namespace std;
+
class RuleContextFeatures : public FeatureFunction {
public:
- RuleContextFeatures(const std::string& param);
+ RuleContextFeatures(const string& param);
protected:
virtual void TraversalFeaturesImpl(const SentenceMetadata& smeta,
const Hypergraph::Edge& edge,
- const std::vector<const void*>& ant_contexts,
+ const vector<const void*>& ant_contexts,
SparseVector<double>* features,
SparseVector<double>* estimated_features,
void* context) const;
virtual void PrepareForInput(const SentenceMetadata& smeta);
+ virtual void ParseArgs(const string& in);
+ virtual string Escape(const string& x) const;
+ virtual void ReplaceMacroWithString(string& feature_instance,
+ bool token_vs_label,
+ int relative_location,
+ const string& actual_token) const;
+ virtual void ReplaceTokenMacroWithString(string& feature_instance,
+ int relative_location,
+ const string& actual_token) const;
+ virtual void ReplaceLabelMacroWithString(string& feature_instance,
+ int relative_location,
+ const string& actual_token) const;
+ virtual void Error(const string&) const;
+
private:
- std::vector<WordID> current_input;
+ vector<int> token_relative_locations, label_relative_locations;
+ string feature_template;
+ vector<WordID> current_input;
WordID kSOS, kEOS;
+ sregex macro_regex;
+
};
#endif