-
Notifications
You must be signed in to change notification settings - Fork 446
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
Only tensor input is valid
when converting ONNX model
#1593
Comments
I will investigate next week. |
OK. We made progress but I found another bug that's blocking. |
@antimora Do you happen to know which ops this model is blocked on currently? |
I fixed a bunch of limitations we had (mostly related to an older OpSet version) and I added a few Ops but we still lack the following. We are missing these implementations (mentioned in #1714)
We need to fix this
The whole list of Ops used by the ONNX file.
Please note, we might still discover some issues once we implement the missing ops and fix Reshape. |
Describe the bug
Which is in
conv2d_update_outputs
.Adding extra printing, it seems to be taking in a
Scalar(Float32)
. I don't know where that's from.To Reproduce
Using onnx-clip model which you can grab at https://lakera-clip.s3.eu-west-1.amazonaws.com/clip_image_model_vitb32.onnx (about 336 MiB)
python -m onnxruntime.tools.make_dynamic_shape_fixed --dim_param image_batch_size --dim_value 1 clip_image_model_vitb32.onnx clip_image_model_vitb32_batchsize1.onnx
The text was updated successfully, but these errors were encountered: