F_VN_GetBatchNovelties

F_VN_GetBatchNovelties 1:

Get the degree of novelty of multiple samples.
Can use available TwinCAT Job Tasks for executing parallel code regions.

Syntax

Definition:

FUNCTION F_VN_GetBatchNovelties : HRESULT
VAR_INPUT
    ipNoveltyDetector : ITcVnMlModel;
    ipSamples         : ITcUnknown;
    ipNovelties       : Reference To ITcVnContainer;
    hrPrev            : HRESULT;
END_VAR

F_VN_GetBatchNovelties 2: Inputs

Name

Type

Description

ipNoveltyDetector

ITcVnMlModel

Novelty detector to be used

ipSamples

ITcUnknown

Container holding a batch of input samples (ContainerType_Vector_Vector_REAL or ContainerType_Vector_Vector_LREAL)

ipNovelties

Reference To ITcVnContainer

Returns the degree of novelty (0.0 if a sample is completely known; > 0.0 otherwise) of each sample (ContainerType_Vector_REAL)

hrPrev

HRESULT

HRESULT indicating the result of previous operations (If SUCCEEDED(hrPrev) equals false, no operation is executed.)

F_VN_GetBatchNovelties 3: Return value

HRESULT

Weiterführende Informationen

Die Funktion F_VN_GetBatchNovelties ermittelt für alle Samples in einem Container die Anomalie-Stärke.

Parameter

Anomalie-Modell

Für die Berechnung der Anomalie-Stärke muss das zuvor trainierte Modell an ipNoveltyDetector übergeben werden.

Samples

Ein Container mit den Samples wird an ipSamples übergeben.

Anomalie-Stärken

Ein Container mit den berechneten Anomalie-Stärken wird über die Referenz ipNovelties zurückgegeben.

Anwendung

Die Anomalie-Stärke von mehreren Samples kann so berechnet werden:

hr := F_VN_GetBatchNovelties(
    ipNoveltyDetector   := ipNoveltyDetector,
    ipSamples           := ipSamples,
    ipNovelties         := ipNovelties,
    hrPrev              := hr);

Verwandte Funktionen

Required License

TC3 Vision Machine Learning

System Requirements

Development environment

Target platform

PLC libraries to include

TwinCAT V3.1. 4024.44 or later

PC or CX (x64) with PL50, e.g. Intel 4-core Atom CPU

Tc3_Vision