BotSharp/BotSharp.NLP/Classify/IClassifier.cs

14 lines
336 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.NLP.Classify
{
public interface IClassifier
{
void Train(List<LabeledFeatureSet> featureSets, ClassifyOptions options);
2018-09-09 01:47:53 +00:00
List<Tuple<string, double>> Classify(LabeledFeatureSet featureSet, ClassifyOptions options);
}
}