- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How can i use OutputInfo Class to set precision and output layout in python API ? There are no python samples which provides a example to use the OutputInfo class. Any help will be highly appreciated.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi there. For more information about the python API please check here:
https://software.intel.com/en-us/articles/OpenVINO-InferEngine and on the left panel, click IENetLayer Class .
precision - Precision of the output data. Provides setter and getter interfaces
to get and modify output layer precision.
So the code to set output precision is following:
net.output['fc3'].precision = "I32"
Currently there is no setter for output layer changing.
Also please keep in mind:
all precision changes have an effect only before loading the IENetwork object to the IEPlugin (before ExecutableNetwork creation). After loading it is impossible to change precision because blobs are already allocated
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page