| 
            
              CreateLearnerFromParameterTLearner, TParam Delegate
             | 
          
        
         
              Function signature for a function that creates a machine learning model 
              given a set of parameter values. This function should use the parameters to create and configure
              a 
ISupervisedLearningTModel, TInput, TOutput learning algorithm that can in turn
              be used to create a new machine learning model with those parameters.
            
 
    Namespace: 
   Accord.MachineLearning.Performance
    Assembly:
   Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntaxpublic delegate TLearner CreateLearnerFromParameter<TLearner, TParam>(
	TParam parameters
)
Public Delegate Function CreateLearnerFromParameter(Of TLearner, TParam) ( 
	parameters As TParam
) As TLearner
Parameters
- parameters
 - Type: TParam
The training parameters. 
Type Parameters
- TLearner
 - TParam
 
Return Value
Type: 
TLearner
              A 
ISupervisedLearningTModel, TInput, TOutputlearning algorithm that can be used
              to create and train machine learning models.
            
See Also