|
Linear. Compress Method (Double[] ,Double[] [] , Double)
|
Compress a set of support vectors and weights into a single
parameter vector.
Namespace:
Accord.Statistics.Kernels
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic double[] Compress(
double[] weights,
double[][] supportVectors,
out double c
)
Public Function Compress (
weights As Double(),
supportVectors As Double()(),
<OutAttribute> ByRef c As Double
) As Double()
Request Example
View SourceParameters
- weights
- Type:System.Double[]
The weights associated with each support vector. - supportVectors
- Type:System.Double[][]
The support vectors. - c
- Type: System.Double
The constant (bias) value.
Return Value
Type:
Double[]A single parameter vector.
Implements
ILinear<T>.Compress(Double[],T[], Double)
See Also