second-state / wasm-learning

Building Rust functions for Node.js to take advantage of Rust's performance, WebAssembly's security and portability, and JavaScript's ease-of-use. Demo code and recipes.
https://www.secondstate.io/articles/getting-started-with-rust-function/
485 stars 102 forks source link

Do we have yolov4-tflite result parse code? #40

Open chairwa opened 2 years ago

chairwa commented 2 years ago

https://github.com/second-state/wasm-learning/blob/48f054591e8267e994247fa90b9a521c849eead7/faas/yolov4-tflite/src/lib.rs#L43

Here, the commented code is for tflite-ssd. So, do we have yolov4-tflite result parse code?

chairwa commented 2 years ago

@tpmccallum

tpmccallum commented 2 years ago

Hi @chairwa Sorry :( Unfortunately not, I did file an issue with the Tensorflow Rust GitHub repository back in July 2021 but no response was ever received. Here is the link for your convenience. https://github.com/tensorflow/rust/issues/311 Kind regards Tim

tpmccallum commented 2 years ago

There are examples of how to create a parser for results but these are C# language i.e. https://docs.microsoft.com/en-us/dotnet/machine-learning/tutorials/object-detection-onnx#create-the-parser I still have not seen anything like this written in Rust language. Hope this helps provide some understanding.