deeplearningunb / Sign-Language-Digits-Detector

Sign Language Digits Detector. The system is capable of recognizing and indetify numbers from images with sign language detector
MIT License
0 stars 0 forks source link

Create layer architecture #16

Closed Felizolinha closed 4 years ago

Felizolinha commented 5 years ago

Description

Plan out the layer architecture and implement it on the ipynb.

Felizolinha commented 5 years ago

I think we can start with a basic convolutional network, with 3 convolutional layers (each layer with a Conv2D and MaxPooling2D). At the end we flatten it, and get the outputs by feeding it into a Dense layer with many neurons and then provide it to the last layer, which will contain 10 neurons, one for each digit.

For the loss function we can use categorical crossentropy, by considering each digit as a category.

luis-gustavo commented 5 years ago

We also need to add Batch Normalization and Droupout Layers between the convolutional layers, so we can have a better generalization and to reduce overfitting.