This project builds an end-to-end multi-class image classifier using TensorFlow 2.0 and TensorFlow Hub.
Identifying the breed of a dog given an image of a dog.
When I'm sitting at the cafe and Itake a photo of adog , I want to know what breed of dog it is.
The data were using is from kaggle's dog breed identification competition.
https://www.kaggle.com/competitions/dog-breed-identification/data
The evaluation is a file with prediction probabilities for each dog breed of each test image.
https://www.kaggle.com/c/dog-breed-identification/overview/evaluation
Some information about the data:
- We're dealing with images (unstructured data) so it's probably best we use deep learning/transfer learning.
- There are 120 breeds of dogs (this means * there are 120 different classes). There are around 10,000+ images in the training set (these images have labels).
- There are around 10,000+ images in the test set (these images have no labels, because we'll want to predict them).