-
-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: GetTensorMutableData
should not be a null pointer
#185
Comments
I'd imagine this just happens when there's no detections ( let t = ys["batchno_classid_y1x1y2x2"].upcast_ref::<Tensor<i64>>()?;
let n_detections = t.shape()?[0];
if n_detections > 0 {
...
} |
kallebysantos
added a commit
to kallebysantos/edge-runtime
that referenced
this issue
Oct 1, 2024
- Solved the "`GetMutableData` should not be a null pointer" error while executing seq2seq models. - Ref.: pykeio/ort#185
kallebysantos
added a commit
to kallebysantos/edge-runtime
that referenced
this issue
Oct 31, 2024
- Solved the "`GetMutableData` should not be a null pointer" error while executing seq2seq models. - Ref.: pykeio/ort#185
kallebysantos
added a commit
to kallebysantos/edge-runtime
that referenced
this issue
Nov 2, 2024
- Solved the "`GetMutableData` should not be a null pointer" error while executing seq2seq models. - Ref.: pykeio/ort#185
kallebysantos
added a commit
to kallebysantos/edge-runtime
that referenced
this issue
Nov 5, 2024
- Solved the "`GetMutableData` should not be a null pointer" error while executing seq2seq models. - Ref.: pykeio/ort#185
kallebysantos
added a commit
to kallebysantos/edge-runtime
that referenced
this issue
Nov 11, 2024
- Solved the "`GetMutableData` should not be a null pointer" error while executing seq2seq models. - Ref.: pykeio/ort#185
laktek
pushed a commit
to supabase/edge-runtime
that referenced
this issue
Nov 12, 2024
* feat: integrate `trasnformers.js` with rust backend Simple integration between `transformers.js` and rust ort backend by exposing js owned API * stamp: refactoring tensors ser/de to try zero-copy - Implementing v8 traits to cast tensors `ToV8` and `FromV8`. - Resolving `ort::Tensor` type based on Js tensor's. * stamp: refactoring to use `serde_v8` - Since `serde_v8` allows zero-copy we use it to handle the model inputs and send back the outputs * fix(ai): seq2seq models causing null pointer error - Solved the "`GetMutableData` should not be a null pointer" error while executing seq2seq models. - Ref.: pykeio/ort#185 * test(sb_ai): implementing tests for ort backend - Applying integration tests over all NLP pipelines with ort backend * stamp(sb_ai): example for generate image embeddings * test(sb_ai): implementing computer vision tests for ort backend - Applying integration tests over VISION pipelines with ort backend * stamp: clippy * fix(ci): makes share common env vars from dotenv file * fix(ci): update `ORT_DYLIB_PATH` * fix(ci): makes share common env vars from dotenv file * chore(sb_ai): update dependencies * chore(event_worker): add a dependency * chore(event_worker): install a tracing macro * chore(base): update `Cargo.toml` * chore(base): trace `malloced_mb` more precisely * chore: update an integration test case script * chore: install tracing subscriber when `base/tracing` feature is enabled * chore: update `Cargo.lock` * stamp: add `docker build` script with shared envs * fix(devcontainer): shared `.env` file path --------- Co-authored-by: Nyannyacha <meow@nnc.gg>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem
Error:
GetTensorMutableData
should not be a null pointerThis onnx model has 4 outputs. When fetch the "batchno_classid_y1x1y2x2" output, error occurs.
Version
version = "2.0.0-alpha.4"
Model
https://github.com/jamjamjon/assets/releases/download/v0.0.1/yolopv2_dyn-480x800-f16.onnx
Code
The text was updated successfully, but these errors were encountered: