Click or drag to resize
Accord.NET (logo)

OneVsRestLearning< TInput, TBinary, TModel> . Learn Method (TInput[] ,Int32[] ,Double[] )

Learns a model that can map the given inputs to the given outputs.

Namespace:  Accord.MachineLearning
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public TModel Learn(
	TInput[] x,
	int[] y,
	double[] weights = null
)
Request Example View Source

Parameters

x
Type:TInput[]
The model inputs.
y
Type:System.Int32[]
The desired outputs associated with each x.
weights (Optional)
Type:System.Double[]
The weight of importance for each input-output pair (if supported by the learning algorithm).

Return Value

Type: TModel
A model that has learned how to produce y given x.

Implements

ISupervisedLearning<TModel, TInput, TOutput>.Learn(TInput[],TOutput[],Double[])
See Also