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
[TIDL Import] [PARSER] WARNING: Network not identified as Object Detection network : (1) Ignore if network is not Object Detection network (2) If network is Object Detection network, please specify "model_type":"OD" as part of OSRT compilation options
------------------------- Subgraph Information Summary -------------------------
| Core | No. of Nodes | Number of Subgraphs |
| C7x | 17 | 2 |
| CPU | 1 | x |
| Node | Node Name | Reason |
| ReduceMean | object_detection_model/sequential/global_average_pooling2d/Mean | Layer type not supported by TIDL |
=================== [Optimization for subgraph_1 Completed] ===================
============= [Quantization & Calibration for subgraph_1 Started] =============
2024-10-24 11:59:07.250321771 [W:onnxruntime:, execution_frame.cc:835 VerifyOutputSizes] Expected shape from model of {1,10} does not match actual shape of {1,1,1,1,28,10} for output class
2024-10-24 11:59:07.250346010 [W:onnxruntime:, execution_frame.cc:835 VerifyOutputSizes] Expected shape from model of {1,4} does not match actual shape of {1,1,1,1,28,4} for output bbox
2024-10-24 11:59:07.250352411 [W:onnxruntime:, execution_frame.cc:835 VerifyOutputSizes] Expected shape from model of {1,1} does not match actual shape of {1,1,1,1,28,1} for output score
(1, 1, 1, 1, 28, 4)
(1, 1, 1, 1, 28, 10)
(1, 1, 1, 1, 28, 1)
the correct shape should be
(1, 4)
(1, 10)
(1, 1)
what should i do?
how can i solve this?
The text was updated successfully, but these errors were encountered:
i wrote a simple model with this code:
and i converted it to ONNX model:
when i created a runtime with onnx, the input and outputs of model returned correct shapes:
i want to convert this model and use it on TI dev board, with this code:
but when i start it, it returned wrong shpaes:
the correct shape should be
(1, 4)
(1, 10)
(1, 1)
what should i do?
how can i solve this?
The text was updated successfully, but these errors were encountered: