BotSharp/BotSharp.NLP/Corpus/ReaderOptions.cs

16 lines
287 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.NLP.Corpus
{
public class ReaderOptions
{
public string DataDir { get; set; }
public string FileName { get; set; }
2018-09-09 03:59:01 +00:00
public string LabelPrefix { get; set; }
}
}