using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BotSharp.Models.CRFLite.Decoder { public class DecoderOptions { /// /// Model file path /// public string ModelFileName; /// /// /// public string InputFileName; /// /// /// public int NBest; /// /// /// public int Thread; /// /// /// public int ProbLevel; /// /// Max words length in one sentence /// public int MaxWord; public DecoderOptions() { Thread = 1; NBest = 1; ProbLevel = 0; MaxWord = 128; } } }