About 544,000 results
Open links in new tab
  1. Support vector machine - Wikipedia

    Florian Wenzel developed two different versions, a variational inference (VI) scheme for the Bayesian kernel support vector machine (SVM) and a stochastic version (SVI) for the linear Bayesian SVM.

  2. 支持向量机(SVM)——原理篇 - 知乎

    支持向量机(support vector machines, SVM)是一种二分类模型,它的基本模型是定义在特征空间上的 间隔最大的线性分类器,间隔最大使它有别于感知机;SVM还包括 核技巧,这使它成为实质上的非 …

  3. 机器学习 | 一文看懂SVM算法从原理到实现全解析-CSDN博客

    Feb 7, 2024 · 本文介绍了SVM算法的基本原理,包括硬间隔和软间隔的概念,以及在处理线性和非线性分类、回归和异常值检测中的应用。

  4. 支持向量机_百度百科

    支持向量机(Support Vector Machine, SVM)是一类按监督学习(supervised learning)方式对数据进行二元分类的广义线性分类器(generalized linear classifier),其决策边界是对学习样本求解的最大 …

  5. 支持向量机 - 菜鸟教程

    支持向量机(Support Vector Machine,简称 SVM)是一种监督学习算法,主要用于分类和回归问题。 SVM 的核心思想是找到一个最优的超平面,将不同类别的数据分开。

  6. 支持向量机 - 维基百科,自由的百科全书

    SVM模型是将实例表示为空间中的点,这样映射就使得单独类别的实例被尽可能宽的明显的间隔分开。 然后,将新的实例映射到同一空间,并基于它们落在间隔的哪一侧来预测所属类别。

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

    When training an SVM with the Radial Basis Function (RBF) kernel, two parameters must be considered: C and gamma. The parameter C, common to all SVM kernels, trades off …

  8. 什么是支持向量机 (SVM)? - IBM

    什么是 SVM? 支持向量机 (SVM) 是一种 监督式机器学习 算法,它通过查找最优直线或超平面来对数据进行分类,从而使 N 维空间中每个类别之间的距离最大化。

  9. Support Vector Machine (SVM) Algorithm - GeeksforGeeks

    Nov 13, 2025 · Support Vectors: The closest data points to the hyperplane, crucial for determining the hyperplane and margin in SVM. Margin: The distance between the hyperplane and the support …

  10. The Generalization Problem Many methods exist to choose a good hyperplane (inductive principles) Bayes, statistical learning theory / pac, MDL, ... Each can be used, we will focus on a simple case …