Reputation: 141
I would like to know what are the options I have to run an object detection model in the browser, until now I have found the next options:
Are there other options?
Upvotes: 6
Views: 5751
Reputation: 1
Another alternative is JS-PyTorch.
You can train and run models directly on the web (with GPU support).
Upvotes: 0
Reputation: 1
Just to update you. Tensorflow.js is suitable for the TensorFlow model while onnx runtime web is a good option for others. Things to do are;
If anyone knows more options, kindly add.
Upvotes: 0
Reputation: 153
There's TensorFlow.js.
You still need to convert your model with something like ONNX, though.
Upvotes: 1