Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.clickml.app/llms.txt

Use this file to discover all available pages before exploring further.

SVC finds the decision boundary that maximizes the margin between classes. With non-linear kernels it can model complex class boundaries.

Configuration

ParameterDescriptionDefault
CRegularization parameter. Higher values = less regularization, fits training data more tightly.1.0
KernelKernel function: rbf, linear, poly, sigmoidrbf
GammaKernel coefficient: scale, auto, or a float. Controls the influence radius of a single training example.scale

Input / Output

Type
InputX Train + Y Train
OutputTrained Model

When to use

Works well on small-to-medium datasets with clear class boundaries. Always scale features before SVC — it is very sensitive to feature magnitudes.