From 2a6eb35a713b5b05341b383f3f482e187553c213 Mon Sep 17 00:00:00 2001 From: Shreyas Date: Fri, 5 Apr 2019 23:16:46 +0530 Subject: [PATCH] Added GroupNorm to docs and News.md --- NEWS.md | 1 + docs/src/models/layers.md | 1 + 2 files changed, 2 insertions(+) diff --git a/NEWS.md b/NEWS.md index 681e701f..540ef726 100644 --- a/NEWS.md +++ b/NEWS.md @@ -12,6 +12,7 @@ * 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`. * 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: diff --git a/docs/src/models/layers.md b/docs/src/models/layers.md index 5d5bc5d9..d4c78b33 100644 --- a/docs/src/models/layers.md +++ b/docs/src/models/layers.md @@ -73,4 +73,5 @@ BatchNorm Dropout AlphaDropout LayerNorm +GroupNorm ```