|
SigmoidEstimate Method (Double, Int32, DoubleRange)
|
Estimates suitable values for the sigmoid kernel
by exploring the response area of the tanh function.
Namespace:
Accord.Statistics.Kernels
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public static Sigmoid Estimate(
double[][] inputs,
int samples,
out DoubleRange range
)
Public Shared Function Estimate (
inputs As Double()(),
samples As Integer,
<OutAttribute> ByRef range As DoubleRange
) As Sigmoid
Request Example
View SourceParameters
- inputs
- Type: SystemDouble
An input data set. - samples
- Type: SystemInt32
The size of the subset to use in the estimation. - range
- Type: AccordDoubleRange
The interquartile range for the data.
Return Value
Type:
SigmoidA Sigmoid kernel initialized with appropriate values.
See Also