2019-07-17
阅读量:
646
如何训练SVM模型
# Fitting SVM to the Training set
install.packages('e1071')
library(e1071)
classifier = svm(formula = Purchased ~ .,
data = training_set,
type = 'C-classification',
kernel = 'linear')
- 输出:
- 分类器详细

- 简而言之的分类器







评论(0)


暂无数据
推荐帖子
0条评论
0条评论
0条评论