Show / Hide Table of Contents

Class NearestNeighborEerClassifier.SignerModel

Represents a trained model for NearestNeighborEerClassifier

Inheritance
System.Object
NearestNeighborEerClassifier.SignerModel
Implements
ISignerModel
Namespace: SigStat.Common.PipelineItems.Classifiers
Assembly: SigStat.Common.dll
Syntax
public class SignerModel : object, ISignerModel

Properties

| Improve this Doc View Source

DistanceMatrix

DTW distance matrix of the signatures

Declaration
public DistanceMatrix<string, string, double> DistanceMatrix { get; set; }
Property Value
Type Description
DistanceMatrix<System.String, System.String, System.Double>
| Improve this Doc View Source

ErrorRates

Gets or sets the error rates corresponding to specific thresholds

Declaration
public List<KeyValuePair<double, ErrorRate>> ErrorRates { get; set; }
Property Value
Type Description
List<KeyValuePair<System.Double, ErrorRate>>
| Improve this Doc View Source

SignatureDistanceFromTraining

Gets or sets the signature distance from training.

Declaration
public Dictionary<string, double> SignatureDistanceFromTraining { get; set; }
Property Value
Type Description
Dictionary<System.String, System.Double>
| Improve this Doc View Source

SignerID

Identifies the signer, to whom this model belongs to

Declaration
public string SignerID { get; set; }
Property Value
Type Description
System.String

The signer identifier.

| Improve this Doc View Source

Threshold

A threshold, that will be used for classification. Signatures with an average DTW distance from the genuines above this threshold will be classified as forgeries

Declaration
public double Threshold { get; set; }
Property Value
Type Description
System.Double

Implements

ISignerModel
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX