ermig1979 / Synet

A small framework to infer neural network
MIT License
140 stars 26 forks source link

Unsupported version 11 of IE model #26

Closed edward9112 closed 2 years ago

edward9112 commented 2 years ago

Hello,

I am trying to convert the latest Face detection model and getting this error: Unsupported version 11 of IE model The model is here: https://storage.openvinotoolkit.org/repositories/open_model_zoo/2022.1/models_bin/3/face-detection-0200/FP32/

ermig1979 commented 2 years ago

Thank you for bug report! I will add support of IE 11 in the nearest future.

ermig1979 commented 2 years ago

I fixed some bugs. The model conversion works. See test inference_engine/test_017f.

edward9112 commented 2 years ago

Awesome! It almost works! On this model it shows another error: Not implemented layer : name = Subtract_302 ; type = Subtract ; id = 2

https://storage.openvinotoolkit.org/repositories/open_model_zoo/2022.1/models_bin/3/vehicle-attributes-recognition-barrier-0042/FP32/

edward9112 commented 2 years ago

Also, there is assert error:

File: C:\XXX\src\Synet\Layers\MetaLayer.h
Line: 401

Expression: src[i]->Count() == 1

On this model: https://storage.openvinotoolkit.org/repositories/open_model_zoo/2022.1/models_bin/3/age-gender-recognition-retail-0013/FP32/

ermig1979 commented 2 years ago

Fixed bug in vehicle-attributes-recognition-barrier-0042 model conversion. See test_018f.

edward9112 commented 2 years ago

It works, thank you!