__init__.py 636 B

12345678910111213141516171819202122232425
  1. """
  2. The :mod:`sklearn.svm` module includes Support Vector Machine algorithms.
  3. """
  4. # See http://scikit-learn.sourceforge.net/modules/svm.html for complete
  5. # documentation.
  6. # Author: Fabian Pedregosa <fabian.pedregosa@inria.fr> with help from
  7. # the scikit-learn community. LibSVM and LibLinear are copyright
  8. # of their respective owners.
  9. # License: BSD 3 clause (C) INRIA 2010
  10. from ._bounds import l1_min_c
  11. from ._classes import SVC, SVR, LinearSVC, LinearSVR, NuSVC, NuSVR, OneClassSVM
  12. __all__ = [
  13. "LinearSVC",
  14. "LinearSVR",
  15. "NuSVC",
  16. "NuSVR",
  17. "OneClassSVM",
  18. "SVC",
  19. "SVR",
  20. "l1_min_c",
  21. ]