2018-09-10 03:56:32 +00:00
|
|
|
|
using BotSharp.Algorithm.Features;
|
|
|
|
|
|
using BotSharp.NLP.Tokenize;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.NLP.Classify
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Featuring text
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public interface ITextFeatureExtractor
|
|
|
|
|
|
{
|
|
|
|
|
|
List<Feature> GetFeatures(List<Token> words);
|
2018-09-11 03:35:33 +00:00
|
|
|
|
|
2018-09-10 03:56:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|