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