|
OneVsOneLearningTInput, TBinary, TModelCreate Method
|
Creates an instance of the model to be learned. Inheritors
of this abstract class must define this method so new models
can be created from the training data.
Namespace:
Accord.MachineLearning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax protected abstract TModel Create(
int inputs,
int classes
)
Protected MustOverride Function Create (
inputs As Integer,
classes As Integer
) As TModel
Request Example
View SourceParameters
- inputs
- Type: SystemInt32
- classes
- Type: SystemInt32
Return Value
Type:
TModelSee Also