get_sample_num_class_svm🔗
Short description🔗
get_sample_num_class_svm — Return the number of training samples stored in the training data of
a support vector machine.
Signature🔗
get_sample_num_class_svm( class_svm SVMHandle, out integer NumSamples )
Description🔗
get_sample_num_class_svm returns in NumSamples the
number of training samples that are stored in the support vector
machine (SVM) given by SVMHandle.
get_sample_num_class_svm should be called before the
individual training samples are accessed with
get_sample_class_svm, e.g., for the purpose of reclassifying
the training data (see get_sample_class_svm).
Execution information🔗
Execution information
-
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
-
Multithreading scope: global (may be called from any thread).
-
Processed without parallelization.
Parameters🔗
SVMHandle (input_control) class_svm → (handle)
SVM handle.
NumSamples (output_control) integer → (integer)
Number of stored training samples.
Result🔗
If SVMHandle is valid the operator
get_sample_num_class_svm returns the value 2 (H_MSG_TRUE). If
necessary, an exception is raised.
Combinations with other operators🔗
Combinations
Possible predecessors
add_sample_class_svm, read_samples_class_svm
Possible successors
See also
Module🔗
Foundation