最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - running a SVM classification wont stop on my dataset - Stack Overflow

programmeradmin1浏览0评论

i have a dataset in kaggle and i must compare different ML algorithms accuracy for a binary classification problem. the shape of data is (500000,18). but when i implement any kind of SVM like linear, rbf , poly ... the code wont stop even after a day and there is no error that i can figure out whats the problem. the data set addresss is : and my code is simple :

from sklearn.svm import SVC
clf = SVC(kernel='linear',C=0.001)

clf.fit(X_train, y_train)

i must mention that the accuracy isnt important i just must run different kernel for comparing the accuracies. is there any tips for running SVM for this dataset?

发布评论

评论列表(0)

  1. 暂无评论