Replies: 8 comments
-
Hi @CPFelix , As far as I can recall, |
Beta Was this translation helpful? Give feedback.
-
@zhiqwang can I modify the name when make model?The layer name seems to be name auto. |
Beta Was this translation helpful? Give feedback.
-
Seems a bit tricky, and need to check the documentation for exporting |
Beta Was this translation helpful? Give feedback.
-
Besides, it doesn't care about the names of the input and output layers if you are using |
Beta Was this translation helpful? Give feedback.
-
For Triton,model input and output name must be named like "name__index", otherwise will come error: |
Beta Was this translation helpful? Give feedback.
-
@zhiqwang And I find that onnx model is slow than .pt. For my test, yolov5s.pt gets 76.18fps, while yolov5s.onnx gets 24.78fps. |
Beta Was this translation helpful? Give feedback.
-
I think this is possible. Judging the speed of model inference requires more information, such as |
Beta Was this translation helpful? Give feedback.
-
I use batchsieze=1 and the same GPU to test the two model. |
Beta Was this translation helpful? Give feedback.
-
❓ Questions and Help
I used the
export.py
get the torchscript model for yolov5s. But the input layer name isx
and can't be load by Triton. So I want modify the name of input layer. Thanks!Beta Was this translation helpful? Give feedback.
All reactions