|
CreateLearnerFromSubsetTLearner, TInput, TOutput Delegate
|
Namespace:
Accord.MachineLearning.Performance
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public delegate TLearner CreateLearnerFromSubset<TLearner, TInput, TOutput>(
DataSubset<TInput, TOutput> subset
)
Public Delegate Function CreateLearnerFromSubset(Of TLearner, TInput, TOutput) (
subset As DataSubset(Of TInput, TOutput)
) As TLearner
Parameters
- subset
- Type: Accord.MachineLearning.PerformanceDataSubsetTInput, TOutput
The subset of the training data that the model should be trained on.
Type Parameters
- TLearner
- TInput
- TOutput
Return Value
Type:
TLearner
A
ISupervisedLearningTModel, TInput, TOutputlearning algorithm that can be used
to create and train machine learning models.
See Also