-
Notifications
You must be signed in to change notification settings - Fork 409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for BatchNormalization layers with center=False
or scale=False
#754
Conversation
What milestone is this for? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good to me—only a minor change for the pytorch parser.
Should we add a test for PyTorch models?
The current pytorch parser is not developed anymore, we should follow up the changes in the replacement parser in #723. |
I have updated #723 to support parsing of the |
…atchnorm_fix Fix for BatchNormalization layers with `center=False` or `scale=False`
center=False
orscale=False
(i.e.beta
orgamma
areNone
)