Input
ExecutionExecution trigger that begins One-Class SVM training
AI/ML/Classification
Fit a One-Class SVM on normal observations only. Predictions flag whether a new row is an inlier (1) or an outlier (0).
Scores range from 0 to 10. Higher values mean more impact, exposure, or operational weight.
Execution trigger that begins One-Class SVM training
Choose which backend supplies the training data
Upper bound on the fraction of training rows the model is allowed to treat as outliers, in (0, 1]. Raise it when the training set is known to be contaminated.
Feature-space mapping. Gaussian wraps a tight non-linear boundary around the data, Linear yields a half-space, Polynomial adds interaction terms.
Gaussian: the eps in exp(-||x - x'||^2 / eps), larger means a looser boundary. Polynomial: the degree of (<x, x'> + 1)^degree. Ignored for Linear.
Stopping threshold of the SMO solver. Smaller values train longer for a more precise boundary.
Activated once training completes
Thread-safe handle to the trained One-Class SVM
Number of training rows that define the learned boundary