Mobile App to call the AutoML Vision model prediction
Clash Royale CLAN TAG #URR8PPP Mobile App to call the AutoML Vision model prediction Look like I am the first poster here. I am an app developer on Android/iOS and have been waiting to see Cloud AutoML Vision for public release. I just play around the console and build a model with 2 labels. However, the implementation require Rest API or Python , both of which I am not familiar with. How do I make use of of built model? Any other GCP product do I need to use? how or where do I execute the REST API? request.json { "payload": { "image": { "imageBytes": "YOUR_IMAGE_BYTE" }, } } Execute the request curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $(gcloud auth application-default print-access-token)" https://automl.googleapis.com/v1beta1/projects/drughk-9747d/locations/us-central1/models/ICN6566958205491349320:predict -d @request.json I noticed Firebase ML kit where you can upload a...