All Projects → gsurma → digit_recognizer

gsurma / digit_recognizer

Licence: MIT license
CNN digit recognizer implemented in Keras Notebook, Kaggle/MNIST (0.995).

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to digit recognizer

histopathologic cancer detector
CNN histopathologic tumor identifier.
Stars: ✭ 26 (-3.7%)
Mutual labels:  kaggle, kaggle-competition, cnn-keras
Kaggle Web Traffic Time Series Forecasting
Solution to Kaggle - Web Traffic Time Series Forecasting
Stars: ✭ 29 (+7.41%)
Mutual labels:  kaggle, kaggle-competition, cnn-keras
Data Science Competitions
Goal of this repo is to provide the solutions of all Data Science Competitions(Kaggle, Data Hack, Machine Hack, Driven Data etc...).
Stars: ✭ 572 (+2018.52%)
Mutual labels:  kaggle, kaggle-competition
Ml competition platform
Kaggle-like machine learning competition platform
Stars: ✭ 42 (+55.56%)
Mutual labels:  kaggle, kaggle-competition
Kaggle Competitions
There are plenty of courses and tutorials that can help you learn machine learning from scratch but here in GitHub, I want to solve some Kaggle competitions as a comprehensive workflow with python packages. After reading, you can use this workflow to solve other real problems and use it as a template.
Stars: ✭ 86 (+218.52%)
Mutual labels:  kaggle, kaggle-competition
Amazon Forest Computer Vision
Amazon Forest Computer Vision: Satellite Image tagging code using PyTorch / Keras with lots of PyTorch tricks
Stars: ✭ 346 (+1181.48%)
Mutual labels:  kaggle, kaggle-competition
Kaggle Homedepot
3rd Place Solution for HomeDepot Product Search Results Relevance Competition on Kaggle.
Stars: ✭ 452 (+1574.07%)
Mutual labels:  kaggle, kaggle-competition
Kaggle Notebooks
Sample notebooks for Kaggle competitions
Stars: ✭ 77 (+185.19%)
Mutual labels:  kaggle, kaggle-competition
ashrae-great-energy-predictor-3-solution-analysis
Analysis of top give winning solutions of the ASHRAE Great Energy Predictor III competition
Stars: ✭ 44 (+62.96%)
Mutual labels:  kaggle, kaggle-competition
Kaggle Airbnb Recruiting New User Bookings
2nd Place Solution in Kaggle Airbnb New User Bookings competition
Stars: ✭ 118 (+337.04%)
Mutual labels:  kaggle, kaggle-competition
Segmentation
Tensorflow implementation : U-net and FCN with global convolution
Stars: ✭ 101 (+274.07%)
Mutual labels:  kaggle, kaggle-competition
Open Solution Toxic Comments
Open solution to the Toxic Comment Classification Challenge
Stars: ✭ 154 (+470.37%)
Mutual labels:  kaggle, kaggle-competition
Pytorch Kaggle Starter
Pytorch starter kit for Kaggle competitions
Stars: ✭ 268 (+892.59%)
Mutual labels:  kaggle, kaggle-competition
kaggler
🏁 API client for Kaggle
Stars: ✭ 50 (+85.19%)
Mutual labels:  kaggle, kaggle-competition
HumanOrRobot
a solution for competition of kaggle `Human or Robot`
Stars: ✭ 16 (-40.74%)
Mutual labels:  kaggle, kaggle-competition
My Journey In The Data Science World
📢 Ready to learn or review your knowledge!
Stars: ✭ 1,175 (+4251.85%)
Mutual labels:  kaggle, kaggle-competition
Data-Science-Hackathon-And-Competition
Grandmaster in MachineHack (3rd Rank Best) | Top 70 in AnalyticsVidya & Zindi | Expert at Kaggle | Hack AI
Stars: ✭ 165 (+511.11%)
Mutual labels:  kaggle, kaggle-competition
Jigsaw-Unintended-Bias-in-Toxicity-Classification
7th Place Solution for Jigsaw Unintended Bias in Toxicity Classification on Kaggle
Stars: ✭ 16 (-40.74%)
Mutual labels:  kaggle, kaggle-competition
Kaggle The Hunt for Prohibited Content
4th Place Solution for The Hunt for Prohibited Content Competition on Kaggle (http://www.kaggle.com/c/avito-prohibited-content)
Stars: ✭ 29 (+7.41%)
Mutual labels:  kaggle, kaggle-competition
Deep Learning Boot Camp
A community run, 5-day PyTorch Deep Learning Bootcamp
Stars: ✭ 1,270 (+4603.7%)
Mutual labels:  kaggle, kaggle-competition

Digit Recognizer

Python Jupyter Notebook with Convolutional Neural Network digit recognizer implemented in Keras. It's Google Colab ready.

Part of the Kaggle competition.

Submitted Kernel with 0.995 score.

Check out corresponding Medium article:

Digit Recognizer - Introduction to Kaggle Competitions with Image Classification Task (0.995)

Data

Dataset: MNIST Handwritten digits

Description: Classification of handwritten digits, 10 classes (0-9).

Training: 37.8k (0.9) images

Validation: 4.2k (0.1) images

Testing: 28k images

Model

_________________________________________________________________
Layer (type)                 Output Shape              Param #   
=================================================================
conv2d_22 (Conv2D)           (None, 28, 28, 32)        832       
_________________________________________________________________
conv2d_23 (Conv2D)           (None, 28, 28, 32)        25632     
_________________________________________________________________
max_pooling2d_11 (MaxPooling (None, 14, 14, 32)        0         
_________________________________________________________________
dropout_7 (Dropout)          (None, 14, 14, 32)        0         
_________________________________________________________________
conv2d_24 (Conv2D)           (None, 14, 14, 64)        18496     
_________________________________________________________________
conv2d_25 (Conv2D)           (None, 14, 14, 64)        36928     
_________________________________________________________________
max_pooling2d_12 (MaxPooling (None, 7, 7, 64)          0         
_________________________________________________________________
dropout_8 (Dropout)          (None, 7, 7, 64)          0         
_________________________________________________________________
flatten_4 (Flatten)          (None, 3136)              0         
_________________________________________________________________
dense_8 (Dense)              (None, 8192)              25698304  
_________________________________________________________________
dropout_9 (Dropout)          (None, 8192)              0         
_________________________________________________________________
dense_9 (Dense)              (None, 2048)              16779264  
_________________________________________________________________
dropout_10 (Dropout)         (None, 2048)              0         
_________________________________________________________________
dense_10 (Dense)             (None, 10)                20490     
=================================================================
Total params: 42,579,946
Trainable params: 42,579,946
Non-trainable params: 0
_________________________________________________________________

Training

Results

Kaggle score: 0.995

Author

Greg (Grzegorz) Surma

PORTFOLIO

GITHUB

BLOG

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].