> In my feature's FFState implementation, I am currently always returning > zero from the function virtual int Compare(const FFState& other) const; > > Is that the correct way to ensure that for hypothesis recombination, this > feature will not be taken into account? >
Hi Lane Yes, I think that's correct. If the Compare() always returns zero, then recombination will treat all your feature states as equal. Although by the sound of things your feature is *very* stateful, so you'll end up recombining states that shouldn't be recombined. cheers Barry -- The University of Edinburgh is a charitable body, registered in Scotland, with registration number SC005336. _______________________________________________ Moses-support mailing list [email protected] http://mailman.mit.edu/mailman/listinfo/moses-support
