I don't want to use APIs from any existing sources like clarifai or google. I have a trained model, and I want predictions served via the model. How can I do it?
I feel like I fairly understand basic ML/DL modles. However, I want to make a web app
For example, I want users to submit pocture throug my web app, and my app would make a classification. I don't want to use APIs from any existing sources like clarifai or google. I have a trained model, and I want predictions served via the model. How can I do it? I have some knowledge of web development. But, not a with python frameworks.
Also, I understand there is tensorflow.js but I want to do it with python.
No any search results
You already invited:
1 Answers
larry - software engineer
Upvotes from:
If you insist on using Python then my guess is that you have to handle it on the server side by using something like Flask or Django; I still think that it's easier to just use Tensorflow.js because the JavaScript code is trivial, unless you really don’t want to expose your model to the client at all.