F_VN_GetBatchNovelties
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
Inputs
Name |
Type |
Description |
---|---|---|
ipNoveltyDetector |
Novelty detector to be used | |
ipSamples |
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 indicating the result of previous operations (If SUCCEEDED(hrPrev) equals false, no operation is executed.) |
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.54 or later | PC or CX (x64) with PL50, e.g. Intel 4-core Atom CPU | Tc3_Vision |