Post Your Answer
4 years ago in Machine Learning , Software Implementation And Tools By Kanika
Need to understand support vector machine learning algorithm
Hello all! I was asked to use support vector machine learning algorithm for regression problems or classification. But I don’t have enough knowledge about this algorithm. Can someone please explain this algorithm?
All Answers (2 Answers In All)
By Bindya Answered 4 years ago
The advantage of using support vector machine is it provides classification performance, it doesn’t require any assumption and does not overfit the data. To know more about SVM visit https://towardsdatascience.com/support-vector-machine-introduction-to-machine-learning-algorithms-934a444fca47, https://machinelearningmastery.com/support-vector-machines-for-machine-learning/
Reply to Bindya
By Govind Answered 4 years ago
SVMÂ is also known as the kernel trick. Here, the functions with low dimension input space are transformed into high dimension space. In simple words, the non-separable problem is converted into a separable problem. It classifies the data into hyperplanes and maximises the distance between different classes involved.Â
Reply to Govind
Related Questions