conversion error
I get an error in prototxt_basic.py Convolution(txt_file, info) if info['param']['no_bias'] == 'True': KeyError: 'param'
Same problem. Variable info has a field called "params", but if replace
if info['param']['no_bias'] == 'True':
with
if info['params']['no_bias'] == 'True':
i get another error:
if info['params']['no_bias'] == 'True': TypeError: list indices must be integers, not str
because info['params'] is a list of strings, and cannot be indexed with string.
try change param to attr
@BorisLestsov I met the same issue, did you solve it?
@BorisLestsov Did you solve the issue?
try change param to attr
Could you please elaborate. Thanks!
just replace 'params' as keywords in the conversion file with 'attrs'