Python icon indicating copy to clipboard operation
Python copied to clipboard

Add svm.py to machine_learning

Open AnishCoder2006 opened this issue 2 months ago • 0 comments

Support Vector Machine (SVM) Classifier with Hyperparameter Tuning

Implementation of SVM classification with grid search for optimal hyperparameters using the breast cancer Wisconsin dataset.

SVM is a supervised machine learning algorithm that finds the optimal hyperplane that separates classes with the maximum margin.

Reference: https://en.wikipedia.org/wiki/Support_vector_machine

AnishCoder2006 avatar Oct 30 '25 17:10 AnishCoder2006