Added GroupNorm to docs and News.md

This commit is contained in:
Shreyas 2019-04-05 23:16:46 +05:30
parent 30fc68047e
commit 2a6eb35a71
2 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,7 @@
* New [AlphaDropout](https://github.com/FluxML/Flux.jl/pull/656). * New [AlphaDropout](https://github.com/FluxML/Flux.jl/pull/656).
* [Data.Iris](https://github.com/FluxML/Flux.jl/pull/652) makes Fisher's Iris dataset available with `Iris.labels` and `Iris.features`. * [Data.Iris](https://github.com/FluxML/Flux.jl/pull/652) makes Fisher's Iris dataset available with `Iris.labels` and `Iris.features`.
* New [InstanceNorm](https://github.com/FluxML/Flux.jl/pull/634), as popularized by [Instance Normalization: The Missing Ingredient for Fast Stylization](https://arxiv.org/abs/1607.08022). * New [InstanceNorm](https://github.com/FluxML/Flux.jl/pull/634), as popularized by [Instance Normalization: The Missing Ingredient for Fast Stylization](https://arxiv.org/abs/1607.08022).
* New [GroupNorm](https://github.com/FluxML/Flux.jl/pull/696), as described in [Group Normalization](https://arxiv.org/abs/1803.08494).
AD Changes: AD Changes:

View File

@ -73,4 +73,5 @@ BatchNorm
Dropout Dropout
AlphaDropout AlphaDropout
LayerNorm LayerNorm
GroupNorm
``` ```