15 lines
368 B
C#
15 lines
368 B
C#
using BotSharp.Algorithm.Bayes;
|
|
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);
|
|
}
|
|
}
|