Quantcast
Viewing all articles
Browse latest Browse all 4448

What is the difference between svmRadial and lssvmradial in R

@pagal_guy wrote:

hello,


As can be seen there is a difference in the two methods used above.
#SVM 1:
X <- train1[,c(15:51)]
svmfit.radial <- train(as.factor(Recommended) ~ ., data = X,method = "svmRadial",trControl = ctrl)
svmfit.radial
# SVM 2:
library(kernlab)
svmfit.lssvmradial <- train(as.factor(Recommended) ~ ., data = X,method = "lssvmRadial",trControl = ctrl)
svmfit.lssvmradial

Can someone please guide me on how these two implementations of SVM differ??

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 4448

Trending Articles