- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am trying to convert an ONNX model with LogSoftmax in output layer to xml file by running the model optimizer script- mo.py
However, since LogSoftmax is not included in the default supported layers, I get the output- "There is no registered "infer" function for node "170" with op = "LogSoftmax". Please implement this function in the extensions"
I am aware that there are c++ implementations of these custom layers in the extensions folder, and I built the cpu_extensions again to get the libcpu_extension.so file.
But there is not enough information on how to use these extensions while running mo.py. How can this be done?
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear Mehta, Anushka,
You need to create an _ext file under here:
C:\Program Files (x86)\IntelSWTools\openvino_2019.2.242\deployment_tools\model_optimizer\extensions\front\onnx
and an ops file under here also
C:\Program Files (x86)\IntelSWTools\openvino_2019.2.242\deployment_tools\model_optimizer\mo\ops
with the infer method fully defined in the "ops" file.
Hope it helps,
Thanks,
Shubha
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page