Reputation: 702
I'm currently looking to use Microsoft Cognitive Service custom vision. It comes with a prediction API which you can use to fetch the predicted results. Is it possible to use Custom Vision without using this prediction API? With that, I mean just export the model to Tensorflow and build my own API which fetches the results directly from Tensorflow.
It seems like I can export the model for mobile usage or to run it in a Docker container. However it seems like the prediction API is wired into that Docker container.
Upvotes: 1
Views: 254
Reputation: 2754
Custom Vision Service only exports compact domains. Classifiers built with a compact domain may be slightly less accurate than a standard domain with the same amount of training data.After you have exported your TensorFlow model from the Custom Vision Service, this quickstart will show you how to use this model locally to classify images.
For object detection exports there is code to load and run the object detection model in the zip file downloaded. Along with the the export model you will find Python code to exercise the model.
Upvotes: 2