- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is there anyway to detect the OpenVINO release version at runtime in the Python API?
I notice that the CPU target now accepts FP16 models whereas the previous (2019r1.1 specifically) release apparently did not.
This means I could dispense with the FP32 models and reduce the size of my package significantly, but this could be a backward compatability nightmare for me.
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear Kulecz, Walter,
Checking on this. Will get back to you.
Thanks for using OpenVino !
Shubha
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear Kulecz, Walter,
The below method is common for all Python modules:
import openvino.inference_engine as ie print(ie.__version__)
Also:
core = IECore() version = core.get_versions('CPU') print('Plugin {}. Version: {}.{}.{}'.format(version.description, version.major, version.minor, version.build_number))
Hope it helps,
Thanks,
Shubha
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page