Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nizarassad/digits-recognition
This project is a machine learning classification task on MNIST using SVM and CNN algorithms
https://github.com/nizarassad/digits-recognition
classification colab-notebook convolutional-neural-networks data-analysis data-science deep-learning jupyter-notebook machine-learning neural-network python support-vector-machines
Last synced: 8 days ago
JSON representation
This project is a machine learning classification task on MNIST using SVM and CNN algorithms
- Host: GitHub
- URL: https://github.com/nizarassad/digits-recognition
- Owner: Nizarassad
- Created: 2024-07-30T18:35:19.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-05T14:59:45.000Z (3 months ago)
- Last Synced: 2024-08-06T15:41:16.692Z (3 months ago)
- Topics: classification, colab-notebook, convolutional-neural-networks, data-analysis, data-science, deep-learning, jupyter-notebook, machine-learning, neural-network, python, support-vector-machines
- Language: Jupyter Notebook
- Homepage:
- Size: 624 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Comparative Study in Digits Recognition Through Convolutional Neural Network and Support Vector Machines
**Author:** Nizar Assad
**Email:** [email protected]This study compares the performance of Convolutional Neural Network (CNN) and Support Vector Machine (SVM) models in classifying the MNIST dataset. The analysis explores the applicability of each model, including the hierarchical feature extraction of CNNs and the hyperplane optimization of SVMs. The results provide insights into the strengths and weaknesses of each model, offering guidance for selecting appropriate models for image classification tasks.
### ๐ Dataset
The MNIST dataset contains 70,000 grayscale images of handwritten digits, each 28x28 pixels in size.
- https://yann.lecun.com/exdb/mnist/
### ๐ค Models
- Download the trained weights manyally through this link:
- https://drive.google.com/drive/folders/17KA9Qhir1mj_cgzGpLV2kk8alqcq7Qyo?usp=sharing### Convolutional Neural Network (CNN)
- **Architecture:** Custom CNN with convolutional layers, ReLU activations, max-pooling, and fully connected layers.
- **Hyperparameters:** Optimized using grid search for learning rate, batch size, and number of epochs.
- **Performance Metrics:** Accuracy, confusion matrix, precision, recall, F1-score.### Support Vector Machine (SVM)
- **Linear SVM:** Utilizes linear decision boundaries.
- **Non-linear SVM:** Employs Radial Basis Function (RBF) kernel to map data into a higher-dimensional space.
- **Hyperparameters:** Optimized gamma and regularization parameter (C) using K-Fold Cross-Validation.
- **Performance Metrics:** Accuracy, confusion matrix, precision, recall, F1-score.## Results, Findings & Evaluation
### Model Selection
A systematic approach was used to evaluate the models, including a comparison of performance metrics, confusion matrices, and ROC analysis.
### Algorithm Comparison
#### Convolutional Neural Network (CNN)
- **Test Accuracy:** 0.9362
- **Observations:** Strong in identifying digits '0', '1', and '4'; challenges with '2' and '7', '5' and '3'.#### Support Vector Machine (SVM)
- **Test Accuracy:** 0.9689 (Non-linear SVM with RBF kernel)
- **Observations:** High precision and recall, particularly accurate in identifying digits '0', '1', '2', and '4'.### Comprehensive Evaluation
- **ROC Curve & AUC:** Both models achieved an AUC of 0.99, indicating high discriminative power.
## Conclusion
The study reveals that while CNNs offer robust performance with their hierarchical feature extraction, the Non-linear SVM with an RBF kernel excels in capturing intricate patterns and achieves superior accuracy. Both models demonstrate high discriminative power, with the SVM slightly outperforming the CNN in overall accuracy and precision.
## References
1. Virnodkar, S., et al. (2020). CaneSat dataset to leverage convolutional neural networks for sugarcane classification. *Journal of King Saud University - Computer and Information Sciences*.
2. Etzold, D. (2022). MNISTโ-โdataset of handwritten digits. *Medium*.
3. Saini, A. (2023). Guide on Support Vector Machine (SVM) algorithm. *Analytics Vidhya*.
4. GeeksforGeeks. (2023). Introduction to convolution neural network.
5. Rendyk. (2023). Tuning the hyperparameters and layers of neural network deep learning. *Analytics Vidhya*.
6. LeCun, Y., Cortes, C., & Burges, C. (1998). The MNIST Database of Handwritten Digits.
7. Pedregosa, F., et al. (2011). Scikit-learn: Machine Learning in Python. *Journal of Machine Learning Research*.