CNN-Model Training for Symbol Detection. #6
Madacool01
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
The next major step for my Air-Math project will be training a CNN (Convolutional Neural Network), whose job is too look at the pixels from my webcam, draw boxes around them in its mind, and guess what they are. Here's how it works:
1. Scanning the Paper:
The CNN starts by sliding small "filters" (tiny 3x3 pixel squares) across my image. This process is called Convolution. These look for specific patterns. As the image moves deeper into the network, the layers work like a team:
2.Finding & Naming:
Every single "filter" square on the image asks itself 2 questions:
I will be training this model on a Dataset from Kaggle inside of Google Colab because of its free NVIDIA T4 GPU
All reactions