-
-
Notifications
You must be signed in to change notification settings - Fork 608
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
instance normalization #634
Conversation
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.
Very nice! Looks reasonable to me, and it fits in well with the BatchNorm
example. I'm happy to include this.
@staticfloat are you happy with the changes? Needs a quick update for recent changes but otherwise GPU tests pass and I think we're good to go. |
LGTM! Thanks @dhpollack! |
Thanks @dhpollack and @staticfloat! @dhpollack I just added a new NEWS.md, new policy is that you have to show off your work there :) Can you add an entry to it? |
While playing with Flux, I implemented Instance Normalization, which is popular in style transfer. I've copied the functionality of batch norm. Thought I'd submit a pull request in case you were interested in adding it to the library.