|   | BaseMaximumLikelihoodLearningTModel, TDistribution, TObservation, TOptionsCreate 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.Statistics.Models.Markov.Learning
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
 Syntax
Syntaxprotected abstract TModel Create(
	TObservation[][] x,
	int numberOfClasses
)
Protected MustOverride Function Create ( 
	x As TObservation()(),
	numberOfClasses As Integer
) As TModel
Parameters
- x
- Type: TObservation
 
- numberOfClasses
- Type: SystemInt32
 
Return Value
Type: 
TModel See Also
See Also