BotSharp/BotSharp.NLP/Corpus/ReaderOptions.cs
2018-09-08 22:59:01 -05:00

16 lines
287 B
C#

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; }
public string LabelPrefix { get; set; }
}
}