[Solved] Want genuine suggestion to build Support Vector Machine in python without using Scikit-Learn [closed]
You can implement a simple linear SVM with numpy only like below. BTW, please google before you ask question next time. There are lots of resources and tutorial online. import numpy as np def my_svm(dataset, label): rate = 1 # rate for gradient descent epochs = 10000 # no of iterations weights = np.zeros(dataset.shape[1]) # … Read more