You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "json2prototxt.py", line 38, in
write_node(prototxt_file, info)
File "/root/MXNet2Caffe/prototxt_basic.py", line 143, in write_node
Convolution(txt_file, info)
File "/root/MXNet2Caffe/prototxt_basic.py", line 16, in Convolution
if info['param']['no_bias'] == 'True':
KeyError: 'param'
The text was updated successfully, but these errors were encountered:
In prototxt_basic.py
I think the key should be params.
When I print info.keys() output is :
[u'inputs', u'name', 'bottom', 'top', 'params', u'attrs', u'op']
Traceback (most recent call last):
File "json2prototxt.py", line 38, in
write_node(prototxt_file, info)
File "/root/MXNet2Caffe/prototxt_basic.py", line 143, in write_node
Convolution(txt_file, info)
File "/root/MXNet2Caffe/prototxt_basic.py", line 16, in Convolution
if info['param']['no_bias'] == 'True':
KeyError: 'param'
The text was updated successfully, but these errors were encountered: