Closed trieck closed 5 years ago
in the _convert_dropout function of _operators.py, the code reads:
_convert_dropout
ratio = node.attrs.get('radio', 0.5)
instead of the correct attribute "ratio":
ratio = node.attrs.get('ratio', 0.5)
Sorry for the late reply because i were on holiday, it's fixed now. Thank you very much!
in the
_convert_dropout
function of _operators.py, the code reads:ratio = node.attrs.get('radio', 0.5)
instead of the correct attribute "ratio":
ratio = node.attrs.get('ratio', 0.5)