Hello! :wave:
First, thank you for all the amazing work on WASI-NN! :smiley:
I recently integrated WASI-NN in Wasm Workers Server. For testing, I took the example model that Wasmtime uses on the CI and the OpenVINO version from the GitHub Actions (2022.3.0). My environment is MacOS.
When running some simple images, I got very weird predictions. Here, the model predicted the dog is a "window screen":
Since I had to prepare the input tensor, I started to try other approaches as I thought the issue was there. It took me a while to notice that I get the right predictions when using OpenVINO 2023.0.1:
Is this an error you faced before? I may update the Wasmtime-wasi-nn docs to point to OpenVINO 2023 just in case other people have the same issue. About debugging it, I'm getting the same predictions consistently, so I can reproduce it if you need more information.
Thank you!
Interesting, I have never observed this, but then again I don't have time to test all of the OS + version combinations. Maybe a MacOS workflow could be added to https://github.com/intel/openvino-rs, which is the crate Wasmtime is using here?
(the release notes don't seem to indicate that any major change has happened for MacOS)
I have had issues in the past where I misread the output tensor due to an off-by-one error, but that doesn't seem to be the problem here.
That could be a great addition to the openvino-rs CI. At least, we can validate the results are similar.
Yeah, I saw the skip(1)
method when fetching the output but the results are not misplaced just by 1.
which is the crate Wasmtime is using here?
Where do you refer? If you mean in Wasm Workers Server (app sample), I'm using the wasi-nn
v0.4.0 crate and the wasmtime-wasi-nn
10.0.1 crate on the host side.
I observed this a while ago, but I can't remember the details of how I solved it. I feel like it was some bad interactions with Rosetta 2. Do you have an intel mac or an arm mac?
I have an ARM Mac :thinking:
It would be interesting to research a bit more, but it seems to be solved in 2023 version
When I used the arm build it didnt' work and I ended up using the Intel build with Rosetta, glad to hear it is solved in latest version.
Last updated: Nov 22 2024 at 16:03 UTC