+ 1

Maching learning using python

i m new to machine learning(using python). I referred to few books but I am not able to figure out how to plot the SVM using matplotlib. Please help me to plot the following: from sklearn.svm import SVC features_train=[[0,0],[1,1],[2,2]] label_train=[1,2,3] features_test=[[1,2],[2,1]] clf=SVC() clf.fit(x,y) pred=clf.predict(features_test) print(pred)

15th Aug 2017, 4:29 AM
Rishi Anand
Rishi Anand - avatar
1 Answer
+ 5
Whew you are quite advanced I must admit. How about somw learning resources? https://code.sololearn.com/WBHiShj1ublU/?ref=app
15th Aug 2017, 4:59 AM
👑 Prometheus 🇸🇬
👑 Prometheus 🇸🇬 - avatar