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.

1.11 bugfix

idata
Employee
629 Views

/usr/local/bin/ncsdk/Controllers/TensorFlowParser.py

 

line 1243:

 

```python

 

bias_data = node.inputs[1].eval() # This eval may fail

 

failed causing error involving no value sent to placeholder for eval, fixed with:

 

python

 

bias_data = node.inputs[1].eval(feed_dict={inputnode + ':0': input_data})

 

```

 

like on line 269.

 

looks like there is more '#this eval may fail' on 1173-1182

 

Anyway, 1.11 fixed some issues I was having with tensorflow ops, so thanks.

 

Thats all, so I guess you can delete this thread after it is noted.Is there a proper way to post bug reports?

0 Kudos
0 Replies
Reply