Skip to main content
Visitor
July 1, 2026
Question

[ST Edge AI Core v4.0.1] Converting ONNX model with a dynamic Convolution layer

  • July 1, 2026
  • 0 replies
  • 3 views

I’m trying to convert an ONNX model which has a Conv layer that takes weights as input (has 2 inputs). Edge AI gives me:

NOT IMPLEMENTED: Convolution with multiple not constant inputs not supported

Are there any short-term plans to support such layers in ST Edge AI?

I also tried to change the name of the layer to some custom name (DynConv). The error in ST Edge AI changed to:

NOT IMPLEMENTED: Unsupported layer types: DynConv

I thought that I could bypass this error by using --custom with a JSON definition, but the JSON format is poorly documented. Also, many attempts at different formats seem to indicate that --custom only works for Keras. Is this correct?