BotSharp/BotSharp.MachineLearning/CRFLite/IGenerateFeature.cs
2018-08-18 16:13:49 -05:00

14 lines
274 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BotSharp.MachineLearning.CRFLite
{
public interface IGenerateFeature
{
bool Initialize();
List<List<string>> GenerateFeature(string strText);
}
}