Intel® Distribution of OpenVINO™ Toolkit
Community assistance about the Intel® Distribution of OpenVINO™ toolkit, OpenCV, and all aspects of computer vision-related on Intel® platforms.

Obfuscating a CNN's topology when distributing software using OpenVino

Joao_P_Intel
Employee
892 Views

Hello,

My team is working on a Software solution that relies on OpenVino's Inference Engine to accelerate the execution of a CNN. So far, we haven't found a way of distributing the CNN's topology in an obfuscated way (without having to ship the <network>.xml file together with the application).

Is there an alternative to CNNNetReader that can load a binary (or obfuscated) version of <network>.xml?

 

Thank you,

Joao

0 Kudos
4 Replies
Yury_G_Intel
Employee
892 Views

Hi,

 Could you elaborate a bit more on exact requirements that you would like to achieve? I.e. would you like to encrypt just xml, both xml and weights? Is there a need for a protection of model in case of stealing it from host that has it installed?

Thanks!

0 Kudos
Joao_P_Intel
Employee
892 Views

Hi Yury,

Precisely! We are trying to protect the model from being re-used (or reverse engineered) by a third party. We thought about obfuscation at first, but if you would have a way to encrypt both xml and weights, even better.

Thanks!

0 Kudos
Joao_P_Intel
Employee
892 Views

Hi Yury,

We are being pressured to prepare a releasable version of our software, and we still don't have any solution for this.

Our end goal is to have our network (and weights) encrypted, but for now, is there anything you can give us to at least protect the network's topology?

Please take this request with urgency.

Thanks,
Joao

0 Kudos
Huang__Roger
Beginner
892 Views

Hi Joao,

There is a ReadNetwork from buffer method:

Parses the topology part of the IR (.xml) given the xml as a buffer This method can be called once only to read network. If you need to read another network instance then create new reader instance.

Is this what you need? to read topology from memory so you can encrypt the topology file and decrypt it in memory?

Roger

 

0 Kudos
Reply