|
MeanShiftLearn Method (Double, Int32)
|
Learns a model that can map the given inputs to the desired outputs.
Namespace:
Accord.MachineLearning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public MeanShiftClusterCollection Learn(
double[][] x,
int[] weights = null
)
Public Function Learn (
x As Double()(),
Optional weights As Integer() = Nothing
) As MeanShiftClusterCollection
Request Example
View SourceParameters
- x
- Type: SystemDouble
The model inputs. - weights (Optional)
- Type: SystemInt32
The weight of importance for each input sample.
Return Value
Type:
MeanShiftClusterCollectionA model that has learned how to produce suitable outputs
given the input data
x.
See Also