Skip to main content

Posts

Showing posts from June, 2021

Handwritten Digit Recognition using Machine Learning

The aim of this project is to implement a classification algorithm to recognize handwritten digits (0-9). Implementation             This project is mainly divided into three steps:             1) Machine learning model             2) Image processing             3) GUI Application We can create this project only by using in-built datasets of machine learning. But to  visualize the real world application we have added the image processing and application part in this project. Now let’s see each step one by one in briefly. 1) Machine learning model-: ·        What is scikit-learn or sklearn? Scikit-learn is probably the most useful library for machine learning in Python. The sklearn library contains a lot of efficient...