About 449,000 results
Open links in new tab
  1. SVC — scikit-learn 1.8.0 documentation

    For large datasets consider using LinearSVC or SGDClassifier instead, possibly after a Nystroem transformer or other Kernel Approximation. The multiclass support is handled according to a one-vs …

  2. Support Vector Machine (SVM) Algorithm - GeeksforGeeks

    Nov 13, 2025 · Support Vector Machine (SVM) is a supervised machine learning algorithm used for classification and regression tasks. It tries to find the best boundary known as hyperplane that …

  3. Support vector machine - Wikipedia

    In machine learning, support vector machines (SVMs, also support vector networks[1]) are supervised max-margin models with associated learning algorithms that analyze data for classification and …

  4. Support Vector Machines: A Guide for Beginners - QuantStart

    This article specifically will cover the theory of maximal margin classifiers, support vector classifiers and support vector machines. Subsequent articles will make use of the Python scikit-learn library to …

  5. Support Vector Classifier, Explained: A Visual Guide with Mini 2D ...

    Oct 1, 2024 · Support Vector Machines are supervised learning models used mainly for classification tasks, though they can be adapted for regression as well. SVMs aim to find the line that best divides …

  6. What Is Support Vector Machine? | IBM

    What are support vector machines (SVMs)? What are SVMs? A support vector machine (SVM) is a supervised machine learning algorithm that classifies data by finding an optimal line or hyperplane …

  7. 11 Support Vector Machines – STAT 508 | Applied Data Mining and ...

    The generalization of the maximal margin classifier to the non-separable case is known as the support vector classifier, where a small proportion of the training sample is allowed to cross the margins or …

  8. Support Vector Machine (SVM) - Analytics Vidhya

    Apr 21, 2025 · SVM (Support Vector Machine) is a supervised algorithm, effective for both regression and classification, though it excels in classification tasks. Popular since the 1990s, it performs well on …

  9. Support vector classifier — STATS 202 - Stanford University

    Support vector classifier: a relaxation of the maximal margin classifier. Allows a number of points to be on the wrong side of the margin or even the hyperplane by allowing slack ϵ i for each case.

  10. 1.4. Support Vector Machines — scikit-learn 1.8.0 documentation

    A support vector machine constructs a hyper-plane or set of hyper-planes in a high or infinite dimensional space, which can be used for classification, regression or other tasks.