{"id":26026029,"url":"https://github.com/chandadiya2004/mnist-digit-classification","last_synced_at":"2026-02-12T00:02:21.851Z","repository":{"id":270906953,"uuid":"911811961","full_name":"chandadiya2004/mnist-digit-classification","owner":"chandadiya2004","description":"This repository demonstrates MNIST digit classification using deep learning. It includes a neural network model built with frameworks like TensorFlow to classify handwritten digits (0-9) from the MNIST dataset. The project covers data loading, preprocessing, model training, evaluation, and accuracy visualization.","archived":false,"fork":false,"pushed_at":"2025-01-22T07:09:31.000Z","size":310,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-26T05:41:45.684Z","etag":null,"topics":["confusion-matrix","cv2","google-colab-patches","keras","matplotlib-pyplot","numpy","pillow","python","seaborn","tensorflow"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chandadiya2004.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-01-03T23:05:20.000Z","updated_at":"2025-01-22T07:13:01.000Z","dependencies_parsed_at":"2025-01-04T00:18:18.766Z","dependency_job_id":"291255b1-ddf7-41a5-998f-06cad9dd02dc","html_url":"https://github.com/chandadiya2004/mnist-digit-classification","commit_stats":null,"previous_names":["chandadiya2004/mnist-digit-classification-using-deep-learning","chandadiya2004/mnist-digit-classification"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chandadiya2004/mnist-digit-classification","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandadiya2004%2Fmnist-digit-classification","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandadiya2004%2Fmnist-digit-classification/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandadiya2004%2Fmnist-digit-classification/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandadiya2004%2Fmnist-digit-classification/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chandadiya2004","download_url":"https://codeload.github.com/chandadiya2004/mnist-digit-classification/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandadiya2004%2Fmnist-digit-classification/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29350081,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T20:11:40.865Z","status":"ssl_error","status_checked_at":"2026-02-11T20:10:41.637Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["confusion-matrix","cv2","google-colab-patches","keras","matplotlib-pyplot","numpy","pillow","python","seaborn","tensorflow"],"created_at":"2025-03-06T14:26:24.765Z","updated_at":"2026-02-12T00:02:21.810Z","avatar_url":"https://github.com/chandadiya2004.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"![MNIST Digits Image](https://lh3.googleusercontent.com/proxy/CchHZ2LdZKb9Bf976EjCanI7-VcKVR8iEwArZZ5g2luhRyBNcGJs6p2sGLjYg8RhSZuGEV8wANYCIQzI0-wAdKcy)\n# MNIST-Digit-classification-using-Deep-Learning\nThis repository provides a comprehensive implementation for classifying handwritten digits (0-9) from the MNIST dataset using deep learning. The project covers the entire workflow, from data preprocessing and visualization to training, evaluation, and result analysis, making it an excellent resource for learning and applying deep learning techniques to image classification tasks.\n\n## Overview:\nThe MNIST dataset is a benchmark dataset in the field of machine learning, consisting of 70,000 grayscale images of handwritten digits, each of size 28x28 pixels. This project utilizes a deep learning approach to train a neural network capable of accurately recognizing these digits.\n\n## Key steps include:\n1. Loading and preprocessing the MNIST dataset.\n2. Building a deep learning model using TensorFlow and Keras.\n3. Training the model and optimizing its performance.\n4. Visualizing and analyzing model performance with metrics and confusion matrices.\n\n## Features:\n### Data Preprocessing:\nNormalize pixel values to improve model convergence.\nVisualize sample images from the dataset for better understanding.\n\n### Model Development:\nUse TensorFlow and Keras to design a feedforward neural network.\nTrain the model on the training dataset and validate on a separate validation dataset.\n\n### Evaluation and Analysis:\nEvaluate model accuracy and loss on the test dataset.\nGenerate a confusion matrix to analyze classification performance.\nVisualize training metrics such as accuracy and loss curves.\n\n### Visualization:\nDisplay input images and their predicted labels.\nPlot confusion matrices and training performance curves using Seaborn and Matplotlib.\n\n## Tools and Libraries Used\nNumPy: For efficient numerical computations and data manipulation.\n\nMatplotlib.pyplot: For visualizing sample images, model metrics, and results.\n\nSeaborn: For advanced visualization, including the confusion matrix.\n\nPillow (PIL): For handling image data.\n\nOpenCV (cv2): For image preprocessing and manipulation.\n\nGoogle Colab Patches: For convenient visualization when running in Google Colab.\n\nTensorFlow: Core framework for building, training, and evaluating the deep learning model.\n\nKeras: High-level API of TensorFlow for building neural networks.\n\nConfusion Matrix: To assess model performance on test data.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchandadiya2004%2Fmnist-digit-classification","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchandadiya2004%2Fmnist-digit-classification","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchandadiya2004%2Fmnist-digit-classification/lists"}