Apply Support Vector Machines (SVM) using both linear and RBF kernels on a binary classification problem (Breast Cancer Dataset).
- Breast Cancer Wisconsin Dataset from Scikit-learn or Kaggle.
- Python
- Scikit-learn
- Pandas
- Matplotlib
- Seaborn
- NumPy
- Loaded and preprocessed dataset.
- Scaled features using StandardScaler.
- Trained SVM using:
- Linear Kernel
- RBF Kernel
- Evaluated using Confusion Matrix and Classification Report.
- Performed Hyperparameter Tuning using GridSearchCV.
- Visualized decision boundary using 2D features.
- Achieved high accuracy on both training and testing data.
- Best hyperparameters obtained:
C=1,gamma=0.1with RBF kernel.
This project is submitted as part of the Elevate AI/ML Internship β Task 7.
