My Brain Cells

Easiest (and best) learning materials for anyone with a curiosity for machine learning and artificial intelligence, Deep learning, Programming, and other fun life hacks.

Day: October 28, 2021

Support Vector Machines (SVM)

  Support vector machines (SVMs) are a set of supervised learning methods used for classification, regression and outliers detection. Classification SVC, NuSVC and LinearSVC are classes capable of performing binary and multi-class classification on a dataset. >>> from sklearn import svm>>> X =…

Back to top