1

I converted my custom pytorch model into Intermediate Representation (IR), to run it in OpenVino. However, I can't find any (simple) tutorial/guide to do that. I know OpenVino has it's own build-in files to run some famous models (link). But, is there any simple guide to run IR in OpenVino?

Scott
  • 4,974
  • 6
  • 35
  • 62

1 Answers1

0

You may refer to the link below for the step-by-step guide on integration steps:

https://docs.openvinotoolkit.org/2021.2/openvino_docs_IE_DG_Integrate_with_customer_application_new_API.html#integration_steps

Rommel_Intel
  • 1,369
  • 1
  • 4
  • 8
  • Thanks, but is there any python guide? – Scott Mar 16 '21 at 07:59
  • This step-by-step guide on integration steps only available in C++. However, you can refer to the python samples.https://github.com/openvinotoolkit/openvino/tree/master/inference-engine/ie_bridges/python/sample – Rommel_Intel Mar 17 '21 at 03:47