You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OS Platform and Distribution (e.g. Linux Ubuntu 16.04): ubuntu-22.04
ONNX version (e.g. 1.6): latest (upcoming 1.5.0)
Backend/Runtime version (e.g. ONNX Runtime 1.1, PyTorch 1.2): N/A
Provide a code snippet to reproduce your errors.
import onnx
model = onnx.load('model.onnx')
inferred = onnx.shape_inference.infer_shapes(model, strict_mode=True)
...
Notes
Since ONNX Model Zoo will deprecate these ancient models #616, we can also consider just remove this if the direct fix is difficult, because we have a correct newer model already (opset_version 12 instead of 10): ssd_mobilenet_v1_12.onnx.
The text was updated successfully, but these errors were encountered:
)
### Description
<!-- - Describe your changes. -->
Skip ssd_mobilenet_v1 due to recent subgraph shape inference
enhancement.
### Motivation and Context
<!-- - Why is this change required? What problem does it solve? -->
<!-- - If it fixes an open issue, please link to the issue here. -->
The CI of `Weekly CI with the latest ONNX and ONNX Model Zoo` started
failing after Aug 27 (passed on Aug 20) probably due to this sugraph
shape inference enhancement: #5488
(merged on Aug 21).
The root cause is track in Model Zoo repo:
onnx/models#628 and will be fixed there. For
now we can just skip this test in ONNX repo.
cc @gramalingam since we have discussed it yesterday.
---------
Signed-off-by: Chun-Wei Chen <[email protected]>
isdanni
pushed a commit
to isdanni/onnx
that referenced
this issue
Nov 2, 2023
…nx#5700)
### Description
<!-- - Describe your changes. -->
Skip ssd_mobilenet_v1 due to recent subgraph shape inference
enhancement.
### Motivation and Context
<!-- - Why is this change required? What problem does it solve? -->
<!-- - If it fixes an open issue, please link to the issue here. -->
The CI of `Weekly CI with the latest ONNX and ONNX Model Zoo` started
failing after Aug 27 (passed on Aug 20) probably due to this sugraph
shape inference enhancement: onnx#5488
(merged on Aug 21).
The root cause is track in Model Zoo repo:
onnx/models#628 and will be fixed there. For
now we can just skip this test in ONNX repo.
cc @gramalingam since we have discussed it yesterday.
---------
Signed-off-by: Chun-Wei Chen <[email protected]>
Bug Report
Which model does this pertain to?
SSD-MobilenetV1: https://github.com/onnx/models/blob/main/vision/object_detection_segmentation/ssd-mobilenetv1/model/ssd_mobilenet_v1_10.onnx
Describe the bug
Failed with the latest onnx as:
after the enhancement from ONNX: onnx/onnx#5488.
Reproduction instructions
System Information
OS Platform and Distribution (e.g. Linux Ubuntu 16.04): ubuntu-22.04
ONNX version (e.g. 1.6): latest (upcoming 1.5.0)
Backend/Runtime version (e.g. ONNX Runtime 1.1, PyTorch 1.2): N/A
Provide a code snippet to reproduce your errors.
Notes
Since ONNX Model Zoo will deprecate these ancient models #616, we can also consider just remove this if the direct fix is difficult, because we have a correct newer model already (opset_version 12 instead of 10): ssd_mobilenet_v1_12.onnx.
The text was updated successfully, but these errors were encountered: