- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have a problem when I try to run my model Reinforcement Learning (RL) with LSTM on VPU (NCS2). It cannot load my network to the device (plugin = IEPlugin(device="MYRIAD")). But if I change device=CPU or GPU, It’ll work well.
This is my code I face the issue :
from openvino.inference_engine import IENetwork, IEPlugin
plugin = IEPlugin(device="MYRIAD")
net = IENetwork(model=model_xml, weights=model_bin)
exec_net = plugin.load(network=net)
This is the error I got :
Traceback (most recent call last):
File "NCS2_UTL_test.py", line 68, in <module>
exec_net = plugin.load(network=net)
File "ie_api.pyx", line 1205, in openvino.inference_engine.ie_api.IEPlugin.load
File "ie_api.pyx", line 1215, in openvino.inference_engine.ie_api.IEPlugin.load
RuntimeError: AssertionFailed: !ieDims.empty()
So, can you give me the reason and how can I fix it if I want to run it on VPU?
Thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page