НачатьНачать бесплатно

Average accuracy for linear SVM

In this exercise you will calculate the average accuracy for a default cost linear SVM using 100 different training/test partitions of the dataset you generated in the first lesson of this chapter. The e1071 library has been preloaded and the dataset is available in the dataframe df. Use random 80/20 splits of the data in df when creating training and test datasets for each iteration.

Это упражнение является частью курса

Support Vector Machines in R

Посмотреть курс

Интерактивное практическое упражнение

Попробуйте выполнить это упражнение, дополнив этот пример кода.

# Create vector to store accuracies and set random number seed
accuracy <- rep(NA, ___)
set.seed(2)
Редактировать и запускать код