Class OneClassNearestNeighborClassifier.SignerModel
Represents a trained model for OneClassNearestNeighborClassifier
Inheritance
System.Object
OneClassNearestNeighborClassifier.SignerModel
Implements
Namespace: SigStat.Common.PipelineItems.Classifiers
Assembly: SigStat.Common.dll
Syntax
public class SignerModel : object, ISignerModel
Properties
| Improve this Doc View SourceDistanceCache
Precalculated distances of known signatures
Declaration
public DistanceMatrix<string, string, double> DistanceCache { get; set; }
Property Value
Type | Description |
---|---|
DistanceMatrix<System.String, System.String, System.Double> |
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. |
TrainingSignatures
A list a of genuine signatures used for training
Declaration
public List<KeyValuePair<string, double[][]>> TrainingSignatures { get; set; }
Property Value
Type | Description |
---|---|
List<KeyValuePair<System.String, System.Double[][]>> |