Show / Hide Table of Contents

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 Source

Test(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
| Improve this Doc View Source

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
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX