« All Events
5:30 PM – AI / Machine Learning – Gamas
January 7 @ 5:30 pm - 6:30 pm
Today We Did
- We reviewed what we did in Pet Breed project.
- We started handwritten digit prediction project.
Homework
- Continue on your handwritten digit prediction project. Following example in pet breed project, continue your handwritten digit prediction project until you have your model fully tune and able to predict hand written single digit image.
- Specifically for this project, you need to resize the image to 28 x 28 before you feed to the model for prediction. Otherwise, the model will have hard time predicting.
number_img = PILImage.create(img)
number_img = number_img.resize((28, 28), Image.NEAREST)
result = model.predict(number_img)
- Once you finished with the code, go to https://sketch.io/sketchpad/ and generate several hand written number and upload it to your kaggle.com and see if your model can predict the image accurately.