BotSharp/BotSharp.MachineLearning/CRFLite/IGenerateFeature.cs

14 lines
274 B
C#
Raw Normal View History

2018-08-18 21:13:49 +00:00
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);
}
}