Name
get_params_class_svmT_get_params_class_svmGetParamsClassSvmGetParamsClassSvm — Return the parameters of a support vector machine.
void GetParamsClassSvm(const HTuple& SVMHandle, HTuple* NumFeatures, HTuple* KernelType, HTuple* KernelParam, HTuple* Nu, HTuple* NumClasses, HTuple* Mode, HTuple* Preprocessing, HTuple* NumComponents)
Hlong HClassSvm::GetParamsClassSvm(HString* KernelType, double* KernelParam, double* Nu, Hlong* NumClasses, HString* Mode, HString* Preprocessing, Hlong* NumComponents) const
static void HOperatorSet.GetParamsClassSvm(HTuple SVMHandle, out HTuple numFeatures, out HTuple kernelType, out HTuple kernelParam, out HTuple nu, out HTuple numClasses, out HTuple mode, out HTuple preprocessing, out HTuple numComponents)
int HClassSvm.GetParamsClassSvm(out string kernelType, out double kernelParam, out double nu, out int numClasses, out string mode, out string preprocessing, out int numComponents)
get_params_class_svmget_params_class_svmGetParamsClassSvmGetParamsClassSvmGetParamsClassSvm returns the parameters of a support
vector machine (SVM) that were specified when the SVM was created
with create_class_svmcreate_class_svmCreateClassSvmCreateClassSvmCreateClassSvm. This is particularly useful if the
SVM was read from a file with read_class_svmread_class_svmReadClassSvmReadClassSvmReadClassSvm. The output of
get_params_class_svmget_params_class_svmGetParamsClassSvmGetParamsClassSvmGetParamsClassSvm can, for example, be used to check
whether the feature vectors and, if necessary, the target data to be
used with the SVM have the correct lengths. For a description of
the parameters, see create_class_svmcreate_class_svmCreateClassSvmCreateClassSvmCreateClassSvm.
- Multithreading type: reentrant (runs in parallel with non-exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
Number of input variables (features) of the SVM.
Additional parameter for the kernel.
Regularization constant of the SVM.
Number of classes of the test data.
Type of preprocessing used to transform the
feature vectors.
If the parameters are valid the operator
get_params_class_svmget_params_class_svmGetParamsClassSvmGetParamsClassSvmGetParamsClassSvm returns the value 2 (H_MSG_TRUE). If necessary,
an exception is raised.
create_class_svmcreate_class_svmCreateClassSvmCreateClassSvmCreateClassSvm,
read_class_svmread_class_svmReadClassSvmReadClassSvmReadClassSvm
add_sample_class_svmadd_sample_class_svmAddSampleClassSvmAddSampleClassSvmAddSampleClassSvm,
train_class_svmtrain_class_svmTrainClassSvmTrainClassSvmTrainClassSvm
classify_class_svmclassify_class_svmClassifyClassSvmClassifyClassSvmClassifyClassSvm
Foundation