Interface IClassifier
Trains classification models based on reference signatures
Namespace: SigStat.Common.Pipeline
Assembly: SigStat.Common.dll
Syntax
public interface IClassifier
Methods
| Improve this Doc View SourceTest(ISignerModel, Signature)
Returns a double value in the range [0..1], representing the probability of the given signature belonging to the trained model.
Declaration
double Test(ISignerModel model, Signature signature)
Parameters
Type | Name | Description |
---|---|---|
ISignerModel | model | The model aquired from the Train(List<Signature>) method |
Signature | signature | The signature to test |
Returns
Type | Description |
---|---|
System.Double |
Train(List<Signature>)
Trains a model based on the signatures and returns the trained model
Declaration
ISignerModel Train(List<Signature> signatures)
Parameters
Type | Name | Description |
---|---|---|
List<Signature> | signatures |
Returns
Type | Description |
---|---|
ISignerModel |