add_sample_class_gmmT_add_sample_class_gmmAddSampleClassGmmAddSampleClassGmmadd_sample_class_gmm (算子名称)

名称

add_sample_class_gmmT_add_sample_class_gmmAddSampleClassGmmAddSampleClassGmmadd_sample_class_gmm — Add a training sample to the training data of a Gaussian Mixture Model.

参数签名

add_sample_class_gmm( : : GMMHandle, 特征, ClassID, Randomize : )

Herror T_add_sample_class_gmm(const Htuple GMMHandle, const Htuple 特征, const Htuple ClassID, const Htuple Randomize)

void AddSampleClassGmm(const HTuple& GMMHandle, const HTuple& 特征, const HTuple& ClassID, const HTuple& Randomize)

void HClassGmm::AddSampleClassGmm(const HTuple& 特征, Hlong ClassID, double Randomize) const

static void HOperatorSet.AddSampleClassGmm(HTuple GMMHandle, HTuple 特征, HTuple classID, HTuple randomize)

void HClassGmm.AddSampleClassGmm(HTuple 特征, int classID, double randomize)

def add_sample_class_gmm(gmmhandle: HHandle, 特征: Sequence[float], class_id: int, randomize: float) -> None

描述

add_sample_class_gmmadd_sample_class_gmmAddSampleClassGmmAddSampleClassGmmAddSampleClassGmmadd_sample_class_gmm adds a training sample to the Gaussian Mixture Model (GMM) given by GMMHandleGMMHandleGMMHandleGMMHandleGMMHandlegmmhandle. The training sample is given by 特征特征特征特征特征特征 and ClassIDClassIDClassIDClassIDclassIDclass_id. 特征特征特征特征特征特征 is the feature vector of the sample, and consequently must be a real vector of length NumDimNumDimNumDimNumDimnumDimnum_dim, as specified in create_class_gmmcreate_class_gmmCreateClassGmmCreateClassGmmCreateClassGmmcreate_class_gmm. ClassIDClassIDClassIDClassIDclassIDclass_id is the class of the sample, an integer between 0 and NumClassesNumClassesNumClassesNumClassesnumClassesnum_classes-1 (set in create_class_gmmcreate_class_gmmCreateClassGmmCreateClassGmmCreateClassGmmcreate_class_gmm).

In the special case where the feature vectors are of integer type, they are lying in the feature space in a grid with step width 1.0. For example, the RGB feature vectors typically used for color classification are triples having integer values between 0 and 255 for each of their components. In fact, there might be even several feature vectors representing the same point. When training a GMM with such data, the training algorithm may tend to align the modelled Gaussians along linearly dependent lines or planes of data that are parallel to the grid dimensions. If the number of CentersCentersCentersCenterscenterscenters returned by train_class_gmmtrain_class_gmmTrainClassGmmTrainClassGmmTrainClassGmmtrain_class_gmm is unusually high, this indicates such a behavior of the algorithm. The parameter RandomizeRandomizeRandomizeRandomizerandomizerandomize can be used to handle such undesired effects. If RandomizeRandomizeRandomizeRandomizerandomizerandomize > 0.0, random Gaussian noise with mean 0 and standard deviation RandomizeRandomizeRandomizeRandomizerandomizerandomize is added to each component of the training data vectors, and the transformed training data is stored in the GMM. For values of RandomizeRandomizeRandomizeRandomizerandomizerandomize 1.0, the randomized data will look like small clouds around the grid points, which does not improve the properties of the data cloud. For values of RandomizeRandomizeRandomizeRandomizerandomizerandomize >> 2.0, the randomization might have a too strong influence on the resulting GMM. For integer feature vectors, a value of RandomizeRandomizeRandomizeRandomizerandomizerandomize between 1.5 and 2.0 is recommended, which transforms the integer data into homogeneous clouds, without modifying its general form in the feature space. If the data has been created from integer data by scaling, the same problem may occur. Here, RandomizeRandomizeRandomizeRandomizerandomizerandomize must be scaled with the same scale factor that was used to scale the original data.

Before the GMM can be trained with train_class_gmmtrain_class_gmmTrainClassGmmTrainClassGmmTrainClassGmmtrain_class_gmm, all training samples must be added to the GMM with add_sample_class_gmmadd_sample_class_gmmAddSampleClassGmmAddSampleClassGmmAddSampleClassGmmadd_sample_class_gmm.

The number of currently stored training samples can be queried with get_sample_num_class_gmmget_sample_num_class_gmmGetSampleNumClassGmmGetSampleNumClassGmmGetSampleNumClassGmmget_sample_num_class_gmm. Stored training samples can be read out again with get_sample_class_gmmget_sample_class_gmmGetSampleClassGmmGetSampleClassGmmGetSampleClassGmmget_sample_class_gmm.

Normally, it is useful to save the training samples in a file with write_samples_class_gmmwrite_samples_class_gmmWriteSamplesClassGmmWriteSamplesClassGmmWriteSamplesClassGmmwrite_samples_class_gmm to facilitate reusing the samples, and to facilitate that, if necessary, new training samples can be added to the data set, and hence to facilitate that a newly created GMM can be trained anew with the extended data set.

运行信息

This operator modifies the state of the following input parameter:

During execution of this operator, access to the value of this parameter must be synchronized if it is used across multiple threads.

参数表

GMMHandleGMMHandleGMMHandleGMMHandleGMMHandlegmmhandle (input_control, state is modified)  class_gmm HClassGmm, HTupleHHandleHTupleHtuple (handle) (IntPtr) (HHandle) (handle)

GMM handle.

特征特征特征特征特征特征 (input_control)  real-array HTupleSequence[float]HTupleHtuple (real) (double) (double) (double)

Feature vector of the training sample to be stored.

ClassIDClassIDClassIDClassIDclassIDclass_id (input_control)  number HTupleintHTupleHtuple (integer) (int / long) (Hlong) (Hlong)

Class of the training sample to be stored.

RandomizeRandomizeRandomizeRandomizerandomizerandomize (input_control)  real HTuplefloatHTupleHtuple (real) (double) (double) (double)

Standard deviation of the Gaussian noise added to the training data.

Default: 0.0

Suggested values: 0.0, 1.5, 2.0

Restriction: Randomize >= 0.0

结果

If the parameters are valid, the operator add_sample_class_gmmadd_sample_class_gmmAddSampleClassGmmAddSampleClassGmmAddSampleClassGmmadd_sample_class_gmm returns the value 2 ( H_MSG_TRUE) . If necessary an exception is raised.

可能的前置算子

create_class_gmmcreate_class_gmmCreateClassGmmCreateClassGmmCreateClassGmmcreate_class_gmm

可能的后置算子

train_class_gmmtrain_class_gmmTrainClassGmmTrainClassGmmTrainClassGmmtrain_class_gmm, write_samples_class_gmmwrite_samples_class_gmmWriteSamplesClassGmmWriteSamplesClassGmmWriteSamplesClassGmmwrite_samples_class_gmm

可替代算子

read_samples_class_gmmread_samples_class_gmmReadSamplesClassGmmReadSamplesClassGmmReadSamplesClassGmmread_samples_class_gmm, add_samples_image_class_gmmadd_samples_image_class_gmmAddSamplesImageClassGmmAddSamplesImageClassGmmAddSamplesImageClassGmmadd_samples_image_class_gmm

参考其它

clear_samples_class_gmmclear_samples_class_gmmClearSamplesClassGmmClearSamplesClassGmmClearSamplesClassGmmclear_samples_class_gmm, get_sample_num_class_gmmget_sample_num_class_gmmGetSampleNumClassGmmGetSampleNumClassGmmGetSampleNumClassGmmget_sample_num_class_gmm, get_sample_class_gmmget_sample_class_gmmGetSampleClassGmmGetSampleClassGmmGetSampleClassGmmget_sample_class_gmm

模块

Foundation