Reputation: 21
I am building an offline ionic application and need to be integrate it with my python script contains a standalone ML model trained and exported from the microsoft custom vision which classifies the trees.it takes picture as an input and returns a string.
python server.py image.png
this returns an output as
Mango tree
How can we access the python script or how to make it as a service ?
Upvotes: 2
Views: 2269
Reputation: 119
1) Create API to accept image and give tree name
2) Create service in Ionic app to upload image and return response
Upvotes: 1