BotSharp/BotSharp.NLP/Classify/IClassifier.cs

15 lines
365 B
C#
Raw Normal View History

2018-09-10 03:56:32 +00:00
using BotSharp.Algorithm.Features;
2018-09-09 14:36:22 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.NLP.Classify
{
public interface IClassifier
{
void Train(List<FeaturesWithLabel> featureSets, ClassifyOptions options);
List<Tuple<string, double>> Classify(List<Feature> features, ClassifyOptions options);
}
}