tensorflow / rust

Rust language bindings for TensorFlow
Apache License 2.0
5.16k stars 421 forks source link

Do have any examples of object recognition? #412

Open Jzow opened 1 year ago

Jzow commented 1 year ago

I saw some models available on tensorflow models but as a beginner, I am not very good at using rust to load these models for image recognition

dskkato commented 1 year ago

Unfortunately, there are no examples of object detection so far. I'll have to try to implement an In/Out node based on the following image classification example, although with Rust it may be difficult to do pre-processing, post-processing, and visualization.

https://github.com/tensorflow/rust/tree/master/examples/mobilenetv3

Jzow commented 1 year ago

Unfortunately, there are no examples of object detection so far. I'll have to try to implement an In/Out node based on the following image classification example, although with Rust it may be difficult to do pre-processing, post-processing, and visualization.

https://github.com/tensorflow/rust/tree/master/examples/mobilenetv3

Thanks, we need to use deep learning in embedded systems, so we use with the TensorFlow framework. However, there are not many examples of deep learning in the rust lang, but the performance of the rust language is good. We will spend a lot of time doing some work on this in the future

MobilenetModel commented 2 months ago

@Jzow how's that work going, and is any of it open source?