svm-complexity-compounds-with-scale
IN derived (depth 2)
Created 2026-06-21T10:23:12+00:00 · Reviewed 2026-06-21T15:37:01+00:00
SVM complexity compounds as problems scale — multiclass classification requires architectural decomposition (OvA/OvO/Crammer-Singer) on top of already scale-dependent solver selection (SMO vs Pegasos vs LIBLINEAR), creating a combinatorial methodology burden that contrasts with neural network approaches which handle multiclass classification more naturally.
Justifications
SL — two independent scaling dimensions (number of classes, dataset size) each require separate engineering decisions that multiply together
Antecedents (all must be IN):
- IN svm-multiclass-requires-architectural-extension — SVMs' binary-native design requires substantial architectural extension for multiclass problems — decomposition into one-vs-all or one-vs-one subproblems, Platt scaling for probability calibration in OVA, or the unified Crammer-Singer formulation — with OVO generally outperforming OVA despite training more classifiers.
- IN svm-solver-ecosystem-scale-dependent — SVMs have a rich ecosystem of specialized solvers whose optimal choice depends on problem geometry — SMO decomposes into 2D subproblems for general QP, Pegasos uses stochastic gradient descent in the primal for large-scale problems, LIBLINEAR achieves linear-time iterations for high-dimensional sparse data, and the crossover point between sub-gradient and coordinate descent depends on whether n or d dominates.
Dependents
These beliefs depend on this one:
- OUT bayesian-svm-resolves-probability-calibration-gap — Bayesian SVMs would resolve the uncalibrated probability limitation that restricts SVM deployment — by reinterpreting SVMs as graphical models with automatic hyperparameter tuning and native uncertainty quantification, the Bayesian formulation addresses the calibration gap without sacrificing SVMs' convex optimization guarantees and global optimality properties.
- OUT kernel-bridge-universal-at-all-scales — Kernel methods would serve as a universal bridge unifying Bayesian and frequentist ML at all problem scales — their common kernel formalism expresses both SVM max-margin classification and Gaussian process Bayesian optimization while maintaining convex guarantees.
- OUT svm-bayesian-extension-achieves-practical-reliability — SVMs' Bayesian interpretation (Polson & Scott 2011) would close the evaluation gap that even SVMs' mathematical guarantees cannot escape — by adding automatic hyperparameter tuning and uncertainty quantification to SVMs' already-anomalous theory-practice unity, the Bayesian extension addresses the subjective methodology choices that create the evaluation gap.
- IN svm-completeness-self-limiting-at-scale — SVMs illustrate a tension within mathematically complete ML frameworks — the same three-decade development that produced convex optimization with global guarantees, kernel theory for nonlinear classification, and sparse support-vector representations also produced a methodology that requires architectural decomposition for multiclass problems (OvA/OvO/Crammer-Singer) and scale-dependent solver selection (SMO vs Pegasos vs LIBLINEAR), creating a combinatorial burden that grows with problem complexity.
- OUT svm-revival-possible-with-modern-hardware — SVMs could experience a paradigm revival if modern specialized hardware eliminated their scaling bottleneck — their mathematical completeness (convex optimization, kernel theory, global optimality guarantees) would transform from a liability into an asset if hardware economics no longer selected against them.