MachineLearning

Built Support Vector Machine(SVM) from scratch in Rust [P]

Built my own SVM classifier from scratch in Rust. It uses SMO optimization, have linear and rbf kernel, uses grid search to tune the hyperparameters. I tested it on two datasets one using Linear dataset and other using RBF, these were the results: Da…