using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace BotSharp.MachineLearning.CRFLite.Decoder
{
public class DecoderOptions
{
///
///
///
[Required]
public string ModelFileName;
///
///
///
[Required]
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 = 100;
}
}
}