-
Notifications
You must be signed in to change notification settings - Fork 16
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
Add support for models with dynamic shapes #69
Add support for models with dynamic shapes #69
Conversation
README.md
Outdated
{ | ||
name: "input" | ||
data_type: TYPE_FP32 | ||
dims: [ -1, 3, -1, 224] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dims: [ -1, 3, -1, 224] | |
dims: [ -1, 3, -1, -1] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is now inconsistent with comment in L209
Co-authored-by: Trawinski, Dariusz <[email protected]>
README.md
Outdated
|
||
Following section shows how to use OpenVINO dynamic shapes. `-1` denotes dimension accepting any value on input. In this case | ||
while model originally accepted input with layout `NCHW` and shape `(1,3,224,224)`, now it accepts any batch size and height. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
while model originally accepted input with layout `NCHW` and shape `(1,3,224,224)`, now it accepts any batch size and height. | |
while model originally accepted input with layout `NCHW` and shape `(1,3,224,224)`, now it accepts any batch size and resolution. |
…i/triton_openvino_backend into atobisze_dynamic_shapes
This reverts commit a68ca46.
This reverts commit a68ca46. Co-authored-by: kyle <[email protected]>
* Revert "Revert "Add support for models with dynamic shapes (#69)" (#70)" This reverts commit 25934f6. * Fix building after style fixes Co-authored-by: Adrian Tobiszewski <[email protected]>
No description provided.