Skip to main content

NuSVC

NuSVC 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::SVC instead until the nu-solver lands.

Constructor

Skigen::NuSVC<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::NuSVC fit() throws in v1.1.0.
Placeholder

NuSVC 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 NuSVC API Reference.