BotSharp/BotSharp.NLP/Classify/IClassifier.cs
2018-09-08 20:47:53 -05:00

14 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.NLP.Classify
{
public interface IClassifier
{
void Train(List<LabeledFeatureSet> featureSets, ClassifyOptions options);
List<Tuple<string, double>> Classify(LabeledFeatureSet featureSet, ClassifyOptions options);
}
}