PeterD1524

Results 26 comments of PeterD1524
trafficstars

> Hi @PeterD1524 > > I would like to have the pre-built Piper plugin in the release assets for the other platforms. Currently, we only have Ubuntu22.04 assets. Could you...

I opened a PR for this: https://github.com/WasmEdge/WasmEdge/pull/3614 I have some questions: 1. Currently I install the onnxruntime dependency for piper in [.github/workflows/reusable-build-extensions-on-manylinux.yml](https://github.com/WasmEdge/WasmEdge/blob/master/.github/workflows/reusable-build-extensions-on-manylinux.yml). I also saw that pytorch is installed in...

> We will use the workflows to install a new dependency and verify the behavior to check if it meets our requirements. If so, we will add it to the...

Do we want ubuntu20.04 release assets for Piper plugin? If I understand correctly, the ubuntu22.04 assets we have now are for testing only.

Hi, I opened a PR to fix this: https://github.com/WasmEdge/WasmEdge/pull/3646.

> 1. It looks like the implementation of the piper backend directly puts the json format config into `Builders[0]` and passes it into `load()`. I wonder if using this together...

@hydai As far as I know, Piper seems to use ONNX models and onnxruntime. I think instead of making Piper a new WASI-NN backend, we should support ONNX. There are...

Regarding ONNX, WasmEdge seems to support it before, but it was removed for some reasons. Related links: https://github.com/WasmEdge/WasmEdge/issues/1063 https://github.com/WasmEdge/WasmEdge/pull/952 https://github.com/WasmEdge/WasmEdge/tree/proposal/wasi_nn_onnx Anyway, I've modified the code in the master branch and...