After labeling images of Scrabble letters on LabelBox, a Keras model is fed these images and labels. Then, predictions of future letters can be made.
You will need:
letters.csv
Downloaded labeled images of Scrabble letters from LabelBoxloadimages.py
Converts data (images) fromletters.csv
to a numpy arrayloadlabels.py
Converts data (labels) fromletters.csv
to a numpy arrayresize_images.py
Takes the numpy array fromloadimages.py
and resizes each element to 100 by 100 and makes them grayscale.main.py
creates a Keras model for recognizing scrabble imageslabels.npy
a NumPy file of the labelsresized_data.npy
a NumPy file of the resized and recolored images
- Alexander Faus