#ifndef FF_FSA_H #define FF_FSA_H /* features whose score is just some PFSA over target string. however, PFSA can use edge and smeta info (e.g. spans on edge) - not usually useful. //SEE ALSO: ff_fsa_dynamic.h, ff_from_fsa.h state is some fixed width byte array. could actually be a void *, WordID sequence, whatever. TODO: specify Scan return code or feature value = -inf for failure state (e.g. for hard intersection with desired target lattice?) TODO: maybe ff that wants to know about SentenceMetadata should store a ref to it permanently rather than get passed it for every operation. we're never decoding more than 1 sentence at once and it's annoying to pass it. same could apply for result edge as well since so far i only use it for logging when USE_INFO_EDGE 1 - would make the most sense if the same change happened to ff.h at the same time. TODO: there are a confusing array of default-implemented supposedly slightly more efficient overrides enabled; however, the two key differences are: do you score a phrase, or just word at a time (the latter constraining you to obey markov_order() everywhere. you have to implement the word case no matter what. TODO: considerable simplification of implementation if Scan implementors are required to update state in place (using temporary copy if they need it), or e.g. using memmove (copy from end to beginning) to rotate state right. TODO: at what sizes is memcpy/memmove better than looping over 2-3 ints and assigning? TODO: fsa ff scores phrases not just words TODO: fsa feature aggregator that presents itself as a single fsa; benefit: when wrapped in ff_from_fsa, only one set of left words is stored. downside: compared to separate ff, the inside portion of lower-order models is incorporated later. however, the full heuristic is already available and exact for those words. so don't sweat it. TODO: state (+ possibly span-specific) custom heuristic, e.g. in "longer than previous word" model, you can expect a higher outside if your state is a word of 2 letters. this is on top of the nice heuristic for the unscored words, of course. in ngrams, the avg prob will be about the same, but if the words possible for a source span are summarized, maybe it's possible to predict. probably not worth the effort. */ #define FSA_DEBUG 0 #if USE_INFO_EDGE #define FSA_DEBUG_CERR 0 #else #define FSA_DEBUG_CERR 1 #endif #define FSA_DEBUG_DEBUG 0 # define FSADBGif(i,e,x) do { if (i) { if (FSA_DEBUG_CERR){std::cerr< # define FSADBG(e,x) FSADBGif(d().debug(),e,x) # define FSADBGnl(e) FSADBGif_nl(d().debug(),e,x) #else # define FSADBG(e,x) # define FSADBGnl(e) #endif #include "fast_lexical_cast.hpp" #include #include #include "ff.h" #include "sparse_vector.h" #include "tdict.h" #include "hg.h" #include "ff_fsa_data.h" /* usage: see ff_sample_fsa.h or ff_lm_fsa.h then, to decode, see ff_from_fsa.h (or TODO: left->right target-earley style rescoring) */ template struct FsaFeatureFunctionBase : public FsaFeatureFunctionData { Impl const& d() const { return static_cast(*this); } Impl & d() { return static_cast(*this); } // this will get called by factory - override if you have multiple or dynamically named features. note: may be called repeatedly void Init() { Init(name()); DBGINIT("base (single feature) FsaFeatureFunctionBase::Init name="<set_value(fid,val) possibly with duplicates. state and next_state will never be the same memory. //TODO: decide if we want to require you to support dest same as src, since that's how we use it most often in ff_from_fsa bottom-up wrapper (in l->r scoring, however, distinct copies will be the rule), and it probably wouldn't be too hard for most people to support. however, it's good to hide the complexity here, once (see overly clever FsaScan loop that swaps src/dest addresses repeatedly to scan a sequence by effectively swapping) protected: // overrides have different name because of inheritance method hiding; // simple/common case; 1 fid. these need not be overriden if you have multiple feature ids Featval Scan1(WordID w,void const* state,void *next_state) const { assert(0); return 0; } Featval Scan1Meta(SentenceMetadata const& /* smeta */,Hypergraph::Edge const& /* edge */, WordID w,void const* state,void *next_state) const { return d().Scan1(w,state,next_state); } public: // must override this or Scan1Meta or Scan1 template inline void ScanAccum(SentenceMetadata const& smeta,Hypergraph::Edge const& edge, WordID w,void const* state,void *next_state,Accum *a) const { Add(d().Scan1Meta(smeta,edge,w,state,next_state),a); } // bounce back and forth between two state vars starting at cs, returning end state location. if we required src=dest addr safe state updating, this concept wouldn't need to exist. // required that you override this if you score phrases differently than word-by-word, however, you can just use the SCAN_PHRASE_ACCUM_OVERRIDE macro to do that in terms of ScanPhraseAccum template void *ScanPhraseAccumBounce(SentenceMetadata const& smeta,Hypergraph::Edge const& edge,WordID const* i, WordID const* end,void *cs,void *ns,Accum *accum) const { // extra code - IT'S FOR EFFICIENCY, MAN! IT'S OK! definitely no bugs here. if (!ssz) { for (;io odd: d().ScanAccum(smeta,edge,i[0],os,es,accum); // o->e } return es; } static const bool simple_phrase_score=true; // if d().simple_phrase_score_, then you should expect different Phrase scores for phrase length > M. so, set this false if you provide ScanPhraseAccum (SCAN_PHRASE_ACCUM_OVERRIDE macro does this) // override this (and use SCAN_PHRASE_ACCUM_OVERRIDE ) if you want e.g. maximum possible order ngram scores with markov_order < n-1. in the future SparseFeatureAccumulator will probably be the only option for type-erased FSA ffs. // note you'll still have to override ScanAccum template void ScanPhraseAccum(SentenceMetadata const& smeta,Hypergraph::Edge const & edge, WordID const* i, WordID const* end, void const* state,void *next_state,Accum *accum) const { if (!ssz) { for (;i \ void *ScanPhraseAccumBounce(SentenceMetadata const& smeta,Hypergraph::Edge const& edge,WordID const* i, WordID const* end,void *cs,void *ns,Accum *accum) const { \ ScanPhraseAccum(smeta,edge,i,end,cs,ns,accum); \ return ns; \ } \ template \ void ScanPhraseAccumOnly(SentenceMetadata const& smeta,Hypergraph::Edge const& edge, \ WordID const* i, WordID const* end, \ void const* state,Accum *accum) const { \ char s2[ssz]; ScanPhraseAccum(smeta,edge,i,end,state,(void*)s2,accum); \ } // override this or bounce along with above. note: you can just call ScanPhraseAccum // doesn't set state (for heuristic in ff_from_fsa) template void ScanPhraseAccumOnly(SentenceMetadata const& smeta,Hypergraph::Edge const& edge, WordID const* i, WordID const* end, void const* state,Accum *accum) const { char s1[ssz]; char s2[ssz]; state_copy(s1,state); d().ScanPhraseAccumBounce(smeta,edge,i,end,(void*)s1,(void*)s2,accum); } // for single-feat only. but will work for different accums template inline void Add(Featval v,Accum *a) const { a->Add(fid_,v); } inline void set_feat(FeatureVector *features,Featval v) const { features->set_value(fid_,v); } // don't set state-bytes etc. in ctor because it may depend on parsing param string FsaFeatureFunctionBase(int statesz=0,Sentence const& end_sentence_phrase=Sentence()) : FsaFeatureFunctionData(statesz,end_sentence_phrase) { name_=name(); // should allow FsaDynamic wrapper to get name copied to it with sync } }; template struct MultipleFeatureFsa : public FsaFeatureFunctionBase { typedef SparseFeatureAccumulator Accum; }; // if State is pod. sets state size and allocs start, h_start // usage: // struct ShorterThanPrev : public FsaTypedBase // i.e. Impl is a CRTP template struct FsaTypedBase : public FsaFeatureFunctionBase { Impl const& d() const { return static_cast(*this); } Impl & d() { return static_cast(*this); } protected: typedef FsaFeatureFunctionBase Base; typedef St State; static inline State & state(void *state) { return *(State*)state; } static inline State const& state(void const* state) { return *(State const*)state; } void set_starts(State const& s,State const& heuristic_s) { if (0) { // already in ctor Base::start.resize(sizeof(State)); Base::h_start.resize(sizeof(State)); } assert(Base::start.size()==sizeof(State)); assert(Base::h_start.size()==sizeof(State)); state(Base::start.begin())=s; state(Base::h_start.begin())=heuristic_s; } FsaTypedBase(St const& start_st=St() ,St const& h_start_st=St() ,Sentence const& end_sentence_phrase=Sentence()) : Base(sizeof(State),end_sentence_phrase) { set_starts(start_st,h_start_st); } public: void print_state(std::ostream &o,void const*st) const { o< inline void ScanT(SentenceMetadata const& smeta,Hypergraph::Edge const& edge,WordID w,St const& prev_st,St &new_st,Accum *a) const { Add(d().ScanT1(smeta,edge,w,prev_st,new_st),a); } // note: you're on your own when it comes to Phrase overrides. see FsaFeatureFunctionBase. sorry. template inline void ScanAccum(SentenceMetadata const& smeta,Hypergraph::Edge const& edge,WordID w,void const* st,void *next_state,Accum *a) const { Impl const& im=d(); FSADBG(edge,"Scan "<describe(im)<<" "<"< struct FsaScanner { // enum {ALIGN=8}; static const int ALIGN=8; FF const& ff; SentenceMetadata const& smeta; int ssz; Bytes states; // first is at begin, second is at (char*)begin+stride void *st0; // states void *st1; // states+stride void *cs; // initially st0, alternates between st0 and st1 inline void *nexts() const { return (cs==st0)?st1:st0; } Hypergraph::Edge const& edge; FsaScanner(FF const& ff,SentenceMetadata const& smeta,Hypergraph::Edge const& edge) : ff(ff),smeta(smeta),edge(edge) { ssz=ff.state_bytes(); int stride=((ssz+ALIGN-1)/ALIGN)*ALIGN; // round up to multiple of ALIGN states.resize(stride+ssz); st0=states.begin(); st1=(char*)st0+stride; // for (int i=0;i<2;++i) st[i]=cs+(i*stride); } void reset(void const* state) { cs=st0; std::memcpy(st0,state,ssz); } template void scan(WordID w,Accum *a) { void *ns=nexts(); ff.ScanAccum(smeta,edge,w,cs,ns,a); cs=ns; } template void scan(WordID const* i,WordID const* end,Accum *a) { // faster. and allows greater-order excursions cs=ff.ScanPhraseAccumBounce(smeta,edge,i,end,cs,nexts(),a); } }; //TODO: combine 2 FsaFeatures typelist style (can recurse for more) #endif