using BotSharp.Algorithm.Features;
using BotSharp.NLP.Tokenize;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.NLP.Classify
{
///
/// Featuring text
///
public interface ITextFeatureExtractor
{
List GetFeatures(List words);
}
}