In this chapter, we built an app that can recognize whether or not a photo contains a hot dog. We accomplished this by training a machine learning model for image classification using Azure Cognitive Services and the Custom Vision service.
We exported models for Core ML and TensorFlow, and we learned how to use them in apps for both iOS and Android. In these apps, a user can take a photo or pick a photo from their photo library. This photo will be sent to the model to be classified, and we will get a result that tells us whether or not the photo is of a hot dog.
Now, we can continue to build other apps and use what we have learned in this chapter regarding machine learning, both on-device and in the cloud using Azure Cognitive Services. Even if we are building other apps, the concept will be the same.
Now, we have completed all chapters in this book. We have learned the following:
- What Xamarin is and how we can get started building apps
- How to use the basic layouts and controls...