Skip to content

Commit

Permalink
MO should support LRN k param with caffe model, rather than fixed to 1 (
Browse files Browse the repository at this point in the history
openvinotoolkit#716)

Co-authored-by: yipengqu <[email protected]>
  • Loading branch information
wistal and yipengqu authored Jun 3, 2020
1 parent 1ffada0 commit 2bb7010
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model-optimizer/extensions/front/caffe/lrn_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def extract(cls, node):
AttributedLRN.update_node_stat(node, {
'alpha': param.alpha,
'beta': param.beta,
'bias': 1,
'bias': param.k,
'local_size': param.local_size,
'region': region,
})
Expand Down

0 comments on commit 2bb7010

Please sign in to comment.