using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BotSharp.MachineLearning.CRFLite.Encoder { public interface IFeatureLexicalDict { void Shrink(int freq); long GetOrAddId(string strFeature); long RegenerateFeatureId(CRFLite.Utils.BTreeDictionary old2new, long ysize); void GenerateLexicalIdList(out IList fea, out IList val); void Clear(); long Size { get; } } }