ClassifierAppend Method

CVB.Net Documentation
Append another classifier to this one. Appending means that the layers contained in clf will be appended to the layers of this classifier, so the layers (which may be considered models) of the two classifiers are left unchanged. Note that both classifiers involved must use the same gradient type.

Namespace:  Stemmer.Cvb.ShapeFinder
Assembly:  Stemmer.Cvb.ShapeFinder (in Stemmer.Cvb.ShapeFinder.dll) Version: 14.0.0.0
Syntax

public void Append(
	Classifier clf
)

Parameters

clf
Type: Stemmer.Cvb.ShapeFinderClassifier
classifier to be appended to this one
Exceptions

ExceptionCondition
ArgumentNullExceptionIf clf is null
ObjectDisposedExceptionIf this classifir or clf have been disposed
InvalidOperationExceptionwhen trying to merge a classifier with a different gradient type
See Also

Reference