Key Ideas
1Multi-class with SVC. SVMs are natively binary classifiers. Scikit-learn's SVC extends to multi-class using one-vs-one: train a separate binary classifier for every pair of classes, then co...
2SVR — the epsilon-insensitive tube. Instead of fitting a separating boundary, SVR fits a "tube" of width epsilon around the regression line. Points inside the tube incur zero loss; only points outside it...
3Probability calibration. SVMs don't natively output probabilities — the core algorithm just produces a signed distance from the decision boundary (decision_function). To get predict_proba, sci...