using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BotSharp.Models.CRFLite.Decoder { public class DecoderOptions { /// /// /// public string ModelFileName; /// /// /// public string InputFileName; /// /// /// public string OutputFileName; /// /// /// public string OutputSegFileName; /// /// /// public int NBest; /// /// /// public int Thread; /// /// /// public int ProbLevel; /// /// /// public int MaxWord; public DecoderOptions() { Thread = 1; NBest = 1; ProbLevel = 0; MaxWord = 10; } } }