René's URL Explorer Experiment


Title: Normalization Layers — PyTorch main documentation

Description: Normalization layers in PyTorch C++ — BatchNorm, LayerNorm, GroupNorm, InstanceNorm, and LocalResponseNorm.

Keywords:

direct link

Domain: docs.pytorch.org


Hey, it has json ld scripts:
    {
       "@context": "https://schema.org",
       "@type": "Article",
       "name": "Normalization Layers",
       "headline": "Normalization Layers",
       "description": "Normalization layers in PyTorch C++ \u2014 BatchNorm, LayerNorm, GroupNorm, InstanceNorm, and LocalResponseNorm.",
       "url": "/api/nn/normalization.html",
       "articleBody": "Normalization Layers# Normalization layers stabilize and accelerate training by normalizing intermediate activations. They help with gradient flow and allow higher learning rates. BatchNorm: Normalizes across batch dimension; most common in CNNs InstanceNorm: Normalizes each sample independently; popular in style transfer LayerNorm: Normalizes across feature dimension; standard in transformers GroupNorm: Normalizes within groups of channels; works with small batches LocalResponseNorm: Lateral inhibition inspired by neuroscience (less common today) BatchNorm1d / BatchNorm2d / BatchNorm3d# class BatchNorm1d : public torch::nn::ModuleHolder\u003cBatchNorm1dImpl\u003e# A ModuleHolder subclass for BatchNorm1dImpl. See the documentation for BatchNorm1dImpl class to learn what methods it provides, and examples of how to use BatchNorm1d with torch::nn::BatchNorm1dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = BatchNorm1dImpl# class BatchNorm1dImpl : public torch::nn::BatchNormImplBase\u003c1, BatchNorm1dImpl\u003e# Applies the BatchNorm1d function. See https://pytorch.org/docs/main/nn.html#torch.nn.BatchNorm1d to learn about the exact behavior of this module. See the documentation for torch::nn::BatchNorm1dOptions class to learn what constructor arguments are supported for this module. Example: BatchNorm1d model(BatchNorm1dOptions(4).eps(0.5).momentum(0.1).affine(false).track_running_stats(true)); class BatchNorm2d : public torch::nn::ModuleHolder\u003cBatchNorm2dImpl\u003e# A ModuleHolder subclass for BatchNorm2dImpl. See the documentation for BatchNorm2dImpl class to learn what methods it provides, and examples of how to use BatchNorm2d with torch::nn::BatchNorm2dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = BatchNorm2dImpl# class BatchNorm2dImpl : public torch::nn::BatchNormImplBase\u003c2, BatchNorm2dImpl\u003e# Applies the BatchNorm2d function. See https://pytorch.org/docs/main/nn.html#torch.nn.BatchNorm2d to learn about the exact behavior of this module. See the documentation for torch::nn::BatchNorm2dOptions class to learn what constructor arguments are supported for this module. Example: BatchNorm2d model(BatchNorm2dOptions(4).eps(0.5).momentum(0.1).affine(false).track_running_stats(true)); class BatchNorm3d : public torch::nn::ModuleHolder\u003cBatchNorm3dImpl\u003e# A ModuleHolder subclass for BatchNorm3dImpl. See the documentation for BatchNorm3dImpl class to learn what methods it provides, and examples of how to use BatchNorm3d with torch::nn::BatchNorm3dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = BatchNorm3dImpl# class BatchNorm3dImpl : public torch::nn::BatchNormImplBase\u003c3, BatchNorm3dImpl\u003e# Applies the BatchNorm3d function. See https://pytorch.org/docs/main/nn.html#torch.nn.BatchNorm3d to learn about the exact behavior of this module. See the documentation for torch::nn::BatchNorm3dOptions class to learn what constructor arguments are supported for this module. Example: BatchNorm3d model(BatchNorm3dOptions(4).eps(0.5).momentum(0.1).affine(false).track_running_stats(true)); Example: auto bn = torch::nn::BatchNorm2d( torch::nn::BatchNorm2dOptions(64) // num_features .eps(1e-5) .momentum(0.1) .affine(true) .track_running_stats(true)); InstanceNorm1d / InstanceNorm2d / InstanceNorm3d# class InstanceNorm1d : public torch::nn::ModuleHolder\u003cInstanceNorm1dImpl\u003e# A ModuleHolder subclass for InstanceNorm1dImpl. See the documentation for InstanceNorm1dImpl class to learn what methods it provides, and examples of how to use InstanceNorm1d with torch::nn::InstanceNorm1dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = InstanceNorm1dImpl# class InstanceNorm1dImpl : public torch::nn::InstanceNormImpl\u003c1, InstanceNorm1dImpl\u003e# Applies the InstanceNorm1d function. See https://pytorch.org/docs/main/nn.html#torch.nn.InstanceNorm1d to learn about the exact behavior of this module. See the documentation for torch::nn::InstanceNorm1dOptions class to learn what constructor arguments are supported for this module. Example: InstanceNorm1d model(InstanceNorm1dOptions(4).eps(0.5).momentum(0.1).affine(false).track_running_stats(true)); class InstanceNorm2d : public torch::nn::ModuleHolder\u003cInstanceNorm2dImpl\u003e# A ModuleHolder subclass for InstanceNorm2dImpl. See the documentation for InstanceNorm2dImpl class to learn what methods it provides, and examples of how to use InstanceNorm2d with torch::nn::InstanceNorm2dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = InstanceNorm2dImpl# class InstanceNorm2dImpl : public torch::nn::InstanceNormImpl\u003c2, InstanceNorm2dImpl\u003e# Applies the InstanceNorm2d function. See https://pytorch.org/docs/main/nn.html#torch.nn.InstanceNorm2d to learn about the exact behavior of this module. See the documentation for torch::nn::InstanceNorm2dOptions class to learn what constructor arguments are supported for this module. Example: InstanceNorm2d model(InstanceNorm2dOptions(4).eps(0.5).momentum(0.1).affine(false).track_running_stats(true)); class InstanceNorm3d : public torch::nn::ModuleHolder\u003cInstanceNorm3dImpl\u003e# A ModuleHolder subclass for InstanceNorm3dImpl. See the documentation for InstanceNorm3dImpl class to learn what methods it provides, and examples of how to use InstanceNorm3d with torch::nn::InstanceNorm3dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = InstanceNorm3dImpl# class InstanceNorm3dImpl : public torch::nn::InstanceNormImpl\u003c3, InstanceNorm3dImpl\u003e# Applies the InstanceNorm3d function. See https://pytorch.org/docs/main/nn.html#torch.nn.InstanceNorm3d to learn about the exact behavior of this module. See the documentation for torch::nn::InstanceNorm3dOptions class to learn what constructor arguments are supported for this module. Example: InstanceNorm3d model(InstanceNorm3dOptions(4).eps(0.5).momentum(0.1).affine(false).track_running_stats(true)); LayerNorm# class LayerNorm : public torch::nn::ModuleHolder\u003cLayerNormImpl\u003e# A ModuleHolder subclass for LayerNormImpl. See the documentation for LayerNormImpl class to learn what methods it provides, and examples of how to use LayerNorm with torch::nn::LayerNormOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = LayerNormImpl# class LayerNormImpl : public torch::nn::Cloneable\u003cLayerNormImpl\u003e# Applies Layer Normalization over a mini-batch of inputs as described in the paper Layer Normalization_ . See https://pytorch.org/docs/main/nn.html#torch.nn.LayerNorm to learn about the exact behavior of this module. See the documentation for torch::nn::LayerNormOptions class to learn what constructor arguments are supported for this module. Example: LayerNorm model(LayerNormOptions({2, 2}).elementwise_affine(false).eps(2e-5)); Public Functions inline LayerNormImpl(std::vector\u003cint64_t\u003e normalized_shape)# explicit LayerNormImpl(LayerNormOptions options_)# virtual void reset() override# reset() must perform initialization of all members with reference semantics, most importantly parameters, buffers and submodules. void reset_parameters()# virtual void pretty_print(std::ostream \u0026stream) const override# Pretty prints the LayerNorm module into the given stream. Tensor forward(const Tensor \u0026input)# Applies layer normalization over a mini-batch of inputs as described in the paper Layer Normalization_ . The mean and standard-deviation are calculated separately over the last certain number dimensions which have to be of the shape specified by input normalized_shape. Layer Normalization: https://arxiv.org/abs/1607.06450 Public Members LayerNormOptions options# The options with which this module was constructed. Tensor weight# The learned weight. Initialized to ones if the elementwise_affine option is set to true upon construction. Tensor bias# The learned bias. Initialized to zeros elementwise_affine option is set to true upon construction. Example: auto ln = torch::nn::LayerNorm( torch::nn::LayerNormOptions({768})); // normalized_shape GroupNorm# class GroupNorm : public torch::nn::ModuleHolder\u003cGroupNormImpl\u003e# A ModuleHolder subclass for GroupNormImpl. See the documentation for GroupNormImpl class to learn what methods it provides, and examples of how to use GroupNorm with torch::nn::GroupNormOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = GroupNormImpl# class GroupNormImpl : public torch::nn::Cloneable\u003cGroupNormImpl\u003e# Applies Group Normalization over a mini-batch of inputs as described in the paper Group Normalization_ . See https://pytorch.org/docs/main/nn.html#torch.nn.GroupNorm to learn about the exact behavior of this module. See the documentation for torch::nn::GroupNormOptions class to learn what constructor arguments are supported for this module. Example: GroupNorm model(GroupNormOptions(2, 2).eps(2e-5).affine(false)); Public Functions inline GroupNormImpl(int64_t num_groups, int64_t num_channels)# explicit GroupNormImpl(const GroupNormOptions \u0026options_)# virtual void reset() override# reset() must perform initialization of all members with reference semantics, most importantly parameters, buffers and submodules. void reset_parameters()# virtual void pretty_print(std::ostream \u0026stream) const override# Pretty prints the GroupNorm module into the given stream. Tensor forward(const Tensor \u0026input)# Public Members GroupNormOptions options# The options with which this module was constructed. Tensor weight# The learned weight. Tensor bias# The learned bias. Example: auto gn = torch::nn::GroupNorm( torch::nn::GroupNormOptions(32, 256)); // num_groups, num_channels LocalResponseNorm# class LocalResponseNorm : public torch::nn::ModuleHolder\u003cLocalResponseNormImpl\u003e# A ModuleHolder subclass for LocalResponseNormImpl. See the documentation for LocalResponseNormImpl class to learn what methods it provides, and examples of how to use LocalResponseNorm with torch::nn::LocalResponseNormOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = LocalResponseNormImpl# class LocalResponseNormImpl : public torch::nn::Cloneable\u003cLocalResponseNormImpl\u003e# Applies local response normalization over an input signal composed of several input planes, where channels occupy the second dimension. Applies normalization across channels. See https://pytorch.org/docs/main/nn.html#torch.nn.LocalResponseNorm to learn about the exact behavior of this module. See the documentation for torch::nn::LocalResponseNormOptions class to learn what constructor arguments are supported for this module. Example: LocalResponseNorm model(LocalResponseNormOptions(2).alpha(0.0002).beta(0.85).k(2.)); Public Functions inline LocalResponseNormImpl(int64_t size)# explicit LocalResponseNormImpl(const LocalResponseNormOptions \u0026options_)# Tensor forward(const Tensor \u0026input)# virtual void reset() override# reset() must perform initialization of all members with reference semantics, most importantly parameters, buffers and submodules. virtual void pretty_print(std::ostream \u0026stream) const override# Pretty prints the LocalResponseNormImpl module into the given stream. Public Members LocalResponseNormOptions options# The options with which this Module was constructed.",
       "author": {
         "@type": "Organization",
         "name": "PyTorch Contributors",
         "url": "https://pytorch.org"
       },
       "image": "https://pytorch.org/docs/stable/_static/img/pytorch_seo.png",
       "mainEntityOfPage": {
         "@type": "WebPage",
         "@id": "/api/nn/normalization.html"
       },
       "datePublished": "2023-01-01T00:00:00Z",
       "dateModified": "2023-01-01T00:00:00Z"
     }
 

docsearch:languageen
llm:site-typedocumentation
llm:frameworkPyTorch
llm:descriptionNormalization layers in PyTorch C++ — BatchNorm, LayerNorm, GroupNorm, InstanceNorm, and LocalResponseNorm.
llm:navigation-filehttps://pytorch.org/docs/stable/llms.txt
llm:sitemaphttps://pytorch.org/docs/stable/sitemap.xml
llm:versionmain
llm:projectPyTorch
llm:page-typedocumentation
og:imagehttps://docs.pytorch.org/docs/stable/_static/img/pytorch_seo.png
None3

Links:

Skip to main contenthttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#main-content
Home https://docs.pytorch.org/cppdocs/index.html
mainhttps://docs.pytorch.org/cppdocs/index.html
Installing C++ Distributions of PyTorch https://docs.pytorch.org/cppdocs/installing.html
The C++ Frontend https://docs.pytorch.org/cppdocs/frontend.html
C++ API Reference https://docs.pytorch.org/cppdocs/api/index.html
ATen: Tensor Library https://docs.pytorch.org/cppdocs/api/aten/index.html
C10: Core Utilities https://docs.pytorch.org/cppdocs/api/c10/index.html
Autograd: Automatic Differentiation https://docs.pytorch.org/cppdocs/api/autograd/index.html
CUDA Support https://docs.pytorch.org/cppdocs/api/cuda/index.html
XPU Support https://docs.pytorch.org/cppdocs/api/xpu/index.html
Neural Network Modules (torch::nn) https://docs.pytorch.org/cppdocs/api/nn/index.html
Optimizers (torch::optim) https://docs.pytorch.org/cppdocs/api/optim/index.html
Data Loading (torch::data) https://docs.pytorch.org/cppdocs/api/data/index.html
Serialization (torch::serialize) https://docs.pytorch.org/cppdocs/api/serialize/index.html
Torch Library API https://docs.pytorch.org/cppdocs/api/library/index.html
Torch Stable API https://docs.pytorch.org/cppdocs/api/stable/index.html
FAQ https://docs.pytorch.org/cppdocs/faq.html
Go to pytorch.org https://pytorch.org
Xhttps://x.com/PyTorch
GitHubhttps://github.com/pytorch/pytorch
PyTorch Forumhttps://discuss.pytorch.org/
PyPihttps://pypi.org/project/torch/
mainhttps://docs.pytorch.org/cppdocs/index.html
Installing C++ Distributions of PyTorch https://docs.pytorch.org/cppdocs/installing.html
The C++ Frontend https://docs.pytorch.org/cppdocs/frontend.html
C++ API Reference https://docs.pytorch.org/cppdocs/api/index.html
ATen: Tensor Library https://docs.pytorch.org/cppdocs/api/aten/index.html
C10: Core Utilities https://docs.pytorch.org/cppdocs/api/c10/index.html
Autograd: Automatic Differentiation https://docs.pytorch.org/cppdocs/api/autograd/index.html
CUDA Support https://docs.pytorch.org/cppdocs/api/cuda/index.html
XPU Support https://docs.pytorch.org/cppdocs/api/xpu/index.html
Neural Network Modules (torch::nn) https://docs.pytorch.org/cppdocs/api/nn/index.html
Optimizers (torch::optim) https://docs.pytorch.org/cppdocs/api/optim/index.html
Data Loading (torch::data) https://docs.pytorch.org/cppdocs/api/data/index.html
Serialization (torch::serialize) https://docs.pytorch.org/cppdocs/api/serialize/index.html
Torch Library API https://docs.pytorch.org/cppdocs/api/library/index.html
Torch Stable API https://docs.pytorch.org/cppdocs/api/stable/index.html
FAQ https://docs.pytorch.org/cppdocs/faq.html
Go to pytorch.org https://pytorch.org
Xhttps://x.com/PyTorch
GitHubhttps://github.com/pytorch/pytorch
PyTorch Forumhttps://discuss.pytorch.org/
PyPihttps://pypi.org/project/torch/
ATen: Tensor Libraryhttps://docs.pytorch.org/cppdocs/api/aten/index.html
Tensor Classhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html
Tensor Creationhttps://docs.pytorch.org/cppdocs/api/aten/creation.html
Tensor Indexinghttps://docs.pytorch.org/cppdocs/api/aten/indexing.html
Tensor Accessorshttps://docs.pytorch.org/cppdocs/api/aten/accessors.html
C10: Core Utilitieshttps://docs.pytorch.org/cppdocs/api/c10/index.html
Device and DeviceTypehttps://docs.pytorch.org/cppdocs/api/c10/device.html
Device Guardshttps://docs.pytorch.org/cppdocs/api/c10/guards.html
Streamshttps://docs.pytorch.org/cppdocs/api/c10/streams.html
Core Typeshttps://docs.pytorch.org/cppdocs/api/c10/types.html
Utilitieshttps://docs.pytorch.org/cppdocs/api/c10/utilities.html
Autograd: Automatic Differentiationhttps://docs.pytorch.org/cppdocs/api/autograd/index.html
Gradient Computationhttps://docs.pytorch.org/cppdocs/api/autograd/gradient.html
Custom Autograd Functionshttps://docs.pytorch.org/cppdocs/api/autograd/custom_functions.html
Gradient Modeshttps://docs.pytorch.org/cppdocs/api/autograd/modes.html
CUDA Supporthttps://docs.pytorch.org/cppdocs/api/cuda/index.html
CUDA Streamshttps://docs.pytorch.org/cppdocs/api/cuda/streams.html
CUDA Guardshttps://docs.pytorch.org/cppdocs/api/cuda/guards.html
CUDA Utility Functionshttps://docs.pytorch.org/cppdocs/api/cuda/utilities.html
XPU Supporthttps://docs.pytorch.org/cppdocs/api/xpu/index.html
XPU Streamshttps://docs.pytorch.org/cppdocs/api/xpu/streams.html
XPU Utility Functionshttps://docs.pytorch.org/cppdocs/api/xpu/utilities.html
Neural Network Modules (torch::nn)https://docs.pytorch.org/cppdocs/api/nn/index.html
Containershttps://docs.pytorch.org/cppdocs/api/nn/containers.html
Convolution Layershttps://docs.pytorch.org/cppdocs/api/nn/convolution.html
Pooling Layershttps://docs.pytorch.org/cppdocs/api/nn/pooling.html
Linear Layershttps://docs.pytorch.org/cppdocs/api/nn/linear.html
Activation Functionshttps://docs.pytorch.org/cppdocs/api/nn/activation.html
Normalization Layershttps://docs.pytorch.org/cppdocs/api/nn/normalization.html
Dropout Layershttps://docs.pytorch.org/cppdocs/api/nn/dropout.html
Embedding Layershttps://docs.pytorch.org/cppdocs/api/nn/embedding.html
Recurrent Layershttps://docs.pytorch.org/cppdocs/api/nn/recurrent.html
Transformer Layershttps://docs.pytorch.org/cppdocs/api/nn/transformer.html
Loss Functionshttps://docs.pytorch.org/cppdocs/api/nn/loss.html
Functional APIhttps://docs.pytorch.org/cppdocs/api/nn/functional.html
Utilitieshttps://docs.pytorch.org/cppdocs/api/nn/utilities.html
Optimizers (torch::optim)https://docs.pytorch.org/cppdocs/api/optim/index.html
Gradient Descent Optimizershttps://docs.pytorch.org/cppdocs/api/optim/gradient_descent.html
Adaptive Learning Rate Optimizershttps://docs.pytorch.org/cppdocs/api/optim/adaptive.html
Second-Order Optimizershttps://docs.pytorch.org/cppdocs/api/optim/second_order.html
Learning Rate Schedulershttps://docs.pytorch.org/cppdocs/api/optim/schedulers.html
Data Loading (torch::data)https://docs.pytorch.org/cppdocs/api/data/index.html
Datasetshttps://docs.pytorch.org/cppdocs/api/data/datasets.html
DataLoaderhttps://docs.pytorch.org/cppdocs/api/data/dataloader.html
Samplershttps://docs.pytorch.org/cppdocs/api/data/samplers.html
Transformshttps://docs.pytorch.org/cppdocs/api/data/transforms.html
Serialization (torch::serialize)https://docs.pytorch.org/cppdocs/api/serialize/index.html
Saving and Loadinghttps://docs.pytorch.org/cppdocs/api/serialize/save_load.html
Archiveshttps://docs.pytorch.org/cppdocs/api/serialize/archives.html
Checkpointshttps://docs.pytorch.org/cppdocs/api/serialize/checkpoints.html
Torch Library APIhttps://docs.pytorch.org/cppdocs/api/library/index.html
Operator Registrationhttps://docs.pytorch.org/cppdocs/api/library/registration.html
Custom Classeshttps://docs.pytorch.org/cppdocs/api/library/custom_classes.html
Library Versioninghttps://docs.pytorch.org/cppdocs/api/library/versioning.html
Torch Stable APIhttps://docs.pytorch.org/cppdocs/api/stable/index.html
Library Registration Macroshttps://docs.pytorch.org/cppdocs/api/stable/registration.html
Stable Operatorshttps://docs.pytorch.org/cppdocs/api/stable/operators.html
Utilitieshttps://docs.pytorch.org/cppdocs/api/stable/utilities.html
https://docs.pytorch.org/cppdocs/index.html
C++ API Referencehttps://docs.pytorch.org/cppdocs/api/index.html
Neural Network Modules (torch::nn)https://docs.pytorch.org/cppdocs/api/nn/index.html
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#normalization-layers
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#batchnorm1d-batchnorm2d-batchnorm3d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
BatchNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm1dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
BatchNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm1d_impl
BatchNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm1d_impl
BatchNorm1dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm1d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
BatchNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm1d4ImplE
BatchNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm1dImplE
BatchNorm1dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm1d
https://pytorch.org/docs/main/nn.html#torch.nn.BatchNorm1dhttps://pytorch.org/docs/main/nn.html#torch.nn.BatchNorm1d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
BatchNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm2dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
BatchNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm2d_impl
BatchNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm2d_impl
BatchNorm2dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm2d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
BatchNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm2d4ImplE
BatchNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm2dImplE
BatchNorm2dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm2d
https://pytorch.org/docs/main/nn.html#torch.nn.BatchNorm2dhttps://pytorch.org/docs/main/nn.html#torch.nn.BatchNorm2d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
BatchNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm3dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
BatchNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm3d_impl
BatchNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm3d_impl
BatchNorm3dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm3d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
BatchNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm3d4ImplE
BatchNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm3dImplE
BatchNorm3dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_batch_norm3d
https://pytorch.org/docs/main/nn.html#torch.nn.BatchNorm3dhttps://pytorch.org/docs/main/nn.html#torch.nn.BatchNorm3d
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#instancenorm1d-instancenorm2d-instancenorm3d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
InstanceNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm1dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
InstanceNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm1d_impl
InstanceNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm1d_impl
InstanceNorm1dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm1d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
InstanceNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm1d4ImplE
InstanceNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm1dImplE
InstanceNorm1dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm1d
https://pytorch.org/docs/main/nn.html#torch.nn.InstanceNorm1dhttps://pytorch.org/docs/main/nn.html#torch.nn.InstanceNorm1d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
InstanceNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm2dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
InstanceNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm2d_impl
InstanceNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm2d_impl
InstanceNorm2dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm2d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
InstanceNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm2d4ImplE
InstanceNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm2dImplE
InstanceNorm2dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm2d
https://pytorch.org/docs/main/nn.html#torch.nn.InstanceNorm2dhttps://pytorch.org/docs/main/nn.html#torch.nn.InstanceNorm2d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
InstanceNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm3dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
InstanceNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm3d_impl
InstanceNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm3d_impl
InstanceNorm3dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm3d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
InstanceNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm3d4ImplE
InstanceNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm3dImplE
InstanceNorm3dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_instance_norm3d
https://pytorch.org/docs/main/nn.html#torch.nn.InstanceNorm3dhttps://pytorch.org/docs/main/nn.html#torch.nn.InstanceNorm3d
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#layernorm
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
LayerNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn9LayerNormE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
LayerNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_layer_norm_impl
LayerNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_layer_norm_impl
LayerNormhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_layer_norm
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
LayerNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn9LayerNorm4ImplE
Cloneablehttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn9CloneableE
LayerNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImplE
https://pytorch.org/docs/main/nn.html#torch.nn.LayerNormhttps://pytorch.org/docs/main/nn.html#torch.nn.LayerNorm
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl13LayerNormImplENSt6vectorI7int64_tEE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl13LayerNormImplE16LayerNormOptions
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl5resetEv
reset()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_layer_norm_impl_1a11f10100b6186bf6e3cebadacec6c45f
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl16reset_parametersEv
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4NK5torch2nn13LayerNormImpl12pretty_printERNSt7ostreamE
LayerNormhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_layer_norm
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl7forwardERK6Tensor
https://arxiv.org/abs/1607.06450https://arxiv.org/abs/1607.06450
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl7optionsE
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl6weightE
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl4biasE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#groupnorm
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
GroupNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn9GroupNormE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
GroupNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_group_norm_impl
GroupNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_group_norm_impl
GroupNormhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_group_norm
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
GroupNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn9GroupNorm4ImplE
Cloneablehttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn9CloneableE
GroupNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImplE
https://pytorch.org/docs/main/nn.html#torch.nn.GroupNormhttps://pytorch.org/docs/main/nn.html#torch.nn.GroupNorm
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl13GroupNormImplE7int64_t7int64_t
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl13GroupNormImplERK16GroupNormOptions
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl5resetEv
reset()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_group_norm_impl_1a2a7964765461753d83f1a02740613bf6
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl16reset_parametersEv
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4NK5torch2nn13GroupNormImpl12pretty_printERNSt7ostreamE
GroupNormhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_group_norm
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl7forwardERK6Tensor
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl7optionsE
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl6weightE
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl4biasE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#localresponsenorm
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
LocalResponseNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn17LocalResponseNormE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
LocalResponseNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_local_response_norm_impl
LocalResponseNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_local_response_norm_impl
LocalResponseNormhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_local_response_norm
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
LocalResponseNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn17LocalResponseNorm4ImplE
Cloneablehttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn9CloneableE
LocalResponseNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImplE
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImplE
https://pytorch.org/docs/main/nn.html#torch.nn.LocalResponseNormhttps://pytorch.org/docs/main/nn.html#torch.nn.LocalResponseNorm
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImpl21LocalResponseNormImplE7int64_t
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImpl21LocalResponseNormImplERK24LocalResponseNormOptions
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImpl7forwardERK6Tensor
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImpl5resetEv
reset()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_local_response_norm_impl_1a8c7dcf43d74e90a0510824589e1ab28b
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4NK5torch2nn21LocalResponseNormImpl12pretty_printERNSt7ostreamE
LocalResponseNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#PyTorchclasstorch_1_1nn_1_1_local_response_norm_impl
#https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImpl7optionsE
Modulehttps://docs.pytorch.org/cppdocs/api/nn/index.html#PyTorchclasstorch_1_1nn_1_1_module
previous Activation Functions https://docs.pytorch.org/cppdocs/api/nn/activation.html
next Dropout Layers https://docs.pytorch.org/cppdocs/api/nn/dropout.html
PyData Sphinx Themehttps://pydata-sphinx-theme.readthedocs.io/en/stable/index.html
previous Activation Functions https://docs.pytorch.org/cppdocs/api/nn/activation.html
next Dropout Layers https://docs.pytorch.org/cppdocs/api/nn/dropout.html
BatchNorm1d / BatchNorm2d / BatchNorm3dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#batchnorm1d-batchnorm2d-batchnorm3d
torch::nn::BatchNorm1dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm1dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm1d4ImplE
torch::nn::BatchNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm1dImplE
torch::nn::BatchNorm2dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm2dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm2d4ImplE
torch::nn::BatchNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm2dImplE
torch::nn::BatchNorm3dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm3dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn11BatchNorm3d4ImplE
torch::nn::BatchNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn15BatchNorm3dImplE
InstanceNorm1d / InstanceNorm2d / InstanceNorm3dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#instancenorm1d-instancenorm2d-instancenorm3d
torch::nn::InstanceNorm1dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm1dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm1d4ImplE
torch::nn::InstanceNorm1dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm1dImplE
torch::nn::InstanceNorm2dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm2dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm2d4ImplE
torch::nn::InstanceNorm2dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm2dImplE
torch::nn::InstanceNorm3dhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm3dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn14InstanceNorm3d4ImplE
torch::nn::InstanceNorm3dImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn18InstanceNorm3dImplE
LayerNormhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#layernorm
torch::nn::LayerNormhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn9LayerNormE
Implhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn9LayerNorm4ImplE
torch::nn::LayerNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImplE
LayerNormImpl()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl13LayerNormImplENSt6vectorI7int64_tEE
LayerNormImpl()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl13LayerNormImplE16LayerNormOptions
reset()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl5resetEv
reset_parameters()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl16reset_parametersEv
pretty_print()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4NK5torch2nn13LayerNormImpl12pretty_printERNSt7ostreamE
forward()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl7forwardERK6Tensor
optionshttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl7optionsE
weighthttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl6weightE
biashttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13LayerNormImpl4biasE
GroupNormhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#groupnorm
torch::nn::GroupNormhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn9GroupNormE
Implhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn9GroupNorm4ImplE
torch::nn::GroupNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImplE
GroupNormImpl()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl13GroupNormImplE7int64_t7int64_t
GroupNormImpl()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl13GroupNormImplERK16GroupNormOptions
reset()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl5resetEv
reset_parameters()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl16reset_parametersEv
pretty_print()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4NK5torch2nn13GroupNormImpl12pretty_printERNSt7ostreamE
forward()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl7forwardERK6Tensor
optionshttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl7optionsE
weighthttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl6weightE
biashttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn13GroupNormImpl4biasE
LocalResponseNormhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#localresponsenorm
torch::nn::LocalResponseNormhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn17LocalResponseNormE
Implhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn17LocalResponseNorm4ImplE
torch::nn::LocalResponseNormImplhttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImplE
LocalResponseNormImpl()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImpl21LocalResponseNormImplE7int64_t
LocalResponseNormImpl()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImpl21LocalResponseNormImplERK24LocalResponseNormOptions
forward()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImpl7forwardERK6Tensor
reset()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImpl5resetEv
pretty_print()https://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4NK5torch2nn21LocalResponseNormImpl12pretty_printERNSt7ostreamE
optionshttps://docs.pytorch.org/cppdocs/api/nn/normalization.html#_CPPv4N5torch2nn21LocalResponseNormImpl7optionsE
Show Source https://docs.pytorch.org/cppdocs/_sources/api/nn/normalization.md.txt
ExecuTorchhttps://docs.pytorch.org/executorch
Helionhttps://docs.pytorch.org/helion
torchaohttps://docs.pytorch.org/ao
kinetohttps://github.com/pytorch/kineto
torchtitanhttps://github.com/pytorch/torchtitan
TorchRLhttps://docs.pytorch.org/rl
torchvisionhttps://docs.pytorch.org/vision
torchaudiohttps://docs.pytorch.org/audio
tensordicthttps://docs.pytorch.org/tensordict
PyTorch on XLA Deviceshttps://docs.pytorch.org/xla
View Docshttps://docs.pytorch.org/docs/stable/index.html
View Tutorialshttps://docs.pytorch.org/tutorials
View Resourceshttps://pytorch.org/resources
Privacy Policyhttps://www.linuxfoundation.org/privacy/
https://www.facebook.com/pytorch
https://twitter.com/pytorch
https://www.youtube.com/pytorch
https://www.linkedin.com/company/pytorch
https://pytorch.slack.com
https://pytorch.org/wechat
Policieshttps://www.linuxfoundation.org/legal/policies
Trademark Usagehttps://www.linuxfoundation.org/trademark-usage
Privacy Policyhttp://www.linuxfoundation.org/privacy
Cookies Policyhttps://opensource.fb.com/legal/cookie-policy
Sphinxhttps://www.sphinx-doc.org/
PyData Sphinx Themehttps://pydata-sphinx-theme.readthedocs.io/en/stable/index.html

Viewport: width=device-width, initial-scale=1


URLs of crawlers that visited me.