You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/reference.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,6 +95,22 @@ NNlib.unfold
95
95
NNlib.fold
96
96
```
97
97
98
+
## Normalization
99
+
100
+
These roughly correspond to Flux's `*Norm` layers.
101
+
<!-- `Flux`'s `*Norm` layers use `NNlib.*norm` and helper functionality such as `NNlib.RunningStats` internally. -->
102
+
103
+
```@docs
104
+
NNlib.layernorm
105
+
NNlib.batchnorm
106
+
NNlib.instancenorm
107
+
NNlib.groupnorm
108
+
NNlib.norm_stats
109
+
NNlib.norm_helper
110
+
NNlib.RunningStats
111
+
NNlib.update_running_stats!
112
+
```
113
+
98
114
## Upsampling
99
115
100
116
`Flux`'s `Upsample` layer uses `NNlib.upsample_nearest`, `NNlib.upsample_bilinear`, and `NNlib.upsample_trilinear` as its backend. Additionally, `Flux`'s `PixelShuffle` layer uses `NNlib.pixel_shuffle` as its backend.
0 commit comments