Replies: 1 comment
|
@cansik From what I can tell, there isn't an OpenVINO equivalent of However, you do have a couple of options:
For example, the graph rewrite would conceptually look like: auto new_score = ov::op::v0::Constant::create(...);
auto new_iou = ov::op::v0::Constant::create(...);
// Recreate NMS with the desired constants
// or replace the corresponding constant inputs.I couldn't find a standalone GUI or CLI tool that performs this kind of IR editing automatically, so if your only artifact is the OpenVINO IR, the supported approach appears to be modifying the graph through the OpenVINO Runtime/Transformation API. One question:
That determines whether it's easier to modify the graph before conversion or perform a graph rewrite on the IR itself. If this solves your problem, feel free to mark it as the accepted answer so others can find it easily. |
Uh oh!
There was an error while loading. Please reload this page.
I am currently working with a model that contains a
NonMaxSuppressionoperator with fixed score and iou threshold. Does anyone know a tool like onnx-modifier to change openvino models and weights and adjust the constants?All reactions