Skip to main content

NuSVR

NuSVR ships as a documented placeholder in v1.1.0: the nu-parametrised formulation requires libsvm's specialised SMO variant, which is scheduled for a later release.

Algorithm

The constructor and accessor surface are present so user code can target the final API, but fit() throws std::runtime_error. Use Skigen::SVR instead until the nu-solver lands.

Constructor

Skigen::NuSVR<Scalar> model(Scalar nu = 0.5, ...);

Parameters

ParameterDefaultDescription
nu0.5Upper bound on the fraction of margin errors and lower bound on the fraction of support vectors.

Methods

MethodDescription
fit(...)Throws — not yet implemented.

Example

// Placeholder: Skigen::NuSVR fit() throws in v1.1.0.
Placeholder

NuSVR is an API placeholder in v1.1.0 — fit() throws until the nu-SVM solver lands. It is intentionally excluded from behavioural parity.

API Reference

For full signatures see the NuSVR API Reference.