BotSharp/BotSharp.NLP/Classify/ClassifyOptions.cs

31 lines
935 B
C#
Raw Normal View History

2018-09-29 04:21:44 +00:00
using Bigtree.Algorithm.SVM;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.NLP.Classify
{
public class ClassifyOptions
{
public string TrainingCorpusDir { get; set; }
public string ModelFilePath { get; set; }
public string ModelDir { get; set; }
public string ModelName { get; set; }
public string Word2VecFilePath { get; set; }
public string FeaturesFileName { get; set; }
public string FeaturesInTfIdfFileName { get; set; }
public string DictionaryFileName { get; set; }
public string CategoriesFileName { get; set; }
public string PrediceOutputFile { get; set; }
2018-09-05 19:38:37 +00:00
public string TransformFilePath { get; set; }
public RangeTransform Transform { get; set; }
/// <summary>
/// Feature dimension
/// </summary>
public int Dimension { get; set; }
}
}