欢迎关注我的CSDN:https://blog.csdn.net/caroline_wendy
本文地址:https://blog.csdn.net/caroline_wendy/article/details/128416962

Normalization in NN:
- Batch Normalization:
- per channel across mini-batch
torch.nn.BatchNorm1d/torch.nn.BatchNorm2d
- Layer Normalization:
- per sample, per layer
torch.nn.LayerNorm
- Instance Normalization:
- per sample, per channel
torch.nn.InstanceNorm1d/torch.nn.InstanceNorm2d
- Group Normalization:
- per sample, per group
torch.nn.GroupNorm
- Weight Norm





![洛谷千题详解 | P1027 [NOIP2001 提高组] Car 的旅行路线【C++语言】](https://img-blog.csdnimg.cn/img_convert/46019ce1d385f39e69e5da2846d669bd.png)













