René's URL Explorer Experiment


Title: Dropout Layers — PyTorch main documentation

Description: Dropout layers in PyTorch C++ — Dropout, Dropout2d, Dropout3d, AlphaDropout, and FeatureAlphaDropout.

Keywords:

direct link

Domain: docs.pytorch.org


Hey, it has json ld scripts:
    {
       "@context": "https://schema.org",
       "@type": "Article",
       "name": "Dropout Layers",
       "headline": "Dropout Layers",
       "description": "Dropout layers in PyTorch C++ \u2014 Dropout, Dropout2d, Dropout3d, AlphaDropout, and FeatureAlphaDropout.",
       "url": "/api/nn/dropout.html",
       "articleBody": "Dropout Layers# Dropout randomly zeros elements during training as a regularization technique, preventing overfitting by forcing the network to learn redundant representations. During evaluation, dropout is disabled and outputs are scaled appropriately. Dropout: Standard dropout for fully-connected layers Dropout2d/3d: Spatial dropout that zeros entire channels (better for CNNs) AlphaDropout: Maintains self-normalizing property (use with SELU activation) Note Remember to call model-\u003etrain() during training and model-\u003eeval() during inference to properly enable/disable dropout behavior. Dropout# class Dropout : public torch::nn::ModuleHolder\u003cDropoutImpl\u003e# A ModuleHolder subclass for DropoutImpl. See the documentation for DropoutImpl class to learn what methods it provides, and examples of how to use Dropout with torch::nn::DropoutOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = DropoutImpl# class DropoutImpl : public torch::nn::detail::_DropoutNd\u003cDropoutImpl\u003e# Applies dropout over a 1-D input. See https://pytorch.org/docs/main/nn.html#torch.nn.Dropout to learn about the exact behavior of this module. See the documentation for torch::nn::DropoutOptions class to learn what constructor arguments are supported for this module. Example: Dropout model(DropoutOptions().p(0.42).inplace(true)); Public Functions Tensor forward(Tensor input)# virtual void pretty_print(std::ostream \u0026stream) const override# Pretty prints the Dropout module into the given stream. Example: auto dropout = torch::nn::Dropout(torch::nn::DropoutOptions(0.5)); Dropout2d / Dropout3d# class Dropout2d : public torch::nn::ModuleHolder\u003cDropout2dImpl\u003e# A ModuleHolder subclass for Dropout2dImpl. See the documentation for Dropout2dImpl class to learn what methods it provides, and examples of how to use Dropout2d with torch::nn::Dropout2dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = Dropout2dImpl# class Dropout2dImpl : public torch::nn::detail::_DropoutNd\u003cDropout2dImpl\u003e# Applies dropout over a 2-D input. See https://pytorch.org/docs/main/nn.html#torch.nn.Dropout2d to learn about the exact behavior of this module. See the documentation for torch::nn::Dropout2dOptions class to learn what constructor arguments are supported for this module. Example: Dropout2d model(Dropout2dOptions().p(0.42).inplace(true)); Public Functions Tensor forward(Tensor input)# virtual void pretty_print(std::ostream \u0026stream) const override# Pretty prints the Dropout2d module into the given stream. class Dropout3d : public torch::nn::ModuleHolder\u003cDropout3dImpl\u003e# A ModuleHolder subclass for Dropout3dImpl. See the documentation for Dropout3dImpl class to learn what methods it provides, and examples of how to use Dropout3d with torch::nn::Dropout3dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = Dropout3dImpl# class Dropout3dImpl : public torch::nn::detail::_DropoutNd\u003cDropout3dImpl\u003e# Applies dropout over a 3-D input. See https://pytorch.org/docs/main/nn.html#torch.nn.Dropout3d to learn about the exact behavior of this module. See the documentation for torch::nn::Dropout3dOptions class to learn what constructor arguments are supported for this module. Example: Dropout3d model(Dropout3dOptions().p(0.42).inplace(true)); Public Functions Tensor forward(Tensor input)# virtual void pretty_print(std::ostream \u0026stream) const override# Pretty prints the Dropout3d module into the given stream. AlphaDropout# class AlphaDropout : public torch::nn::ModuleHolder\u003cAlphaDropoutImpl\u003e# A ModuleHolder subclass for AlphaDropoutImpl. See the documentation for AlphaDropoutImpl class to learn what methods it provides, and examples of how to use AlphaDropout with torch::nn::AlphaDropoutOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = AlphaDropoutImpl# class AlphaDropoutImpl : public torch::nn::detail::_DropoutNd\u003cAlphaDropoutImpl\u003e# Applies Alpha Dropout over the input. See https://pytorch.org/docs/main/nn.html#torch.nn.AlphaDropout to learn about the exact behavior of this module. See the documentation for torch::nn::AlphaDropoutOptions class to learn what constructor arguments are supported for this module. Example: AlphaDropout model(AlphaDropoutOptions(0.2).inplace(true)); Public Functions Tensor forward(const Tensor \u0026input)# virtual void pretty_print(std::ostream \u0026stream) const override# Pretty prints the AlphaDropout module into the given stream. FeatureAlphaDropout# class FeatureAlphaDropout : public torch::nn::ModuleHolder\u003cFeatureAlphaDropoutImpl\u003e# A ModuleHolder subclass for FeatureAlphaDropoutImpl. See the documentation for FeatureAlphaDropoutImpl class to learn what methods it provides, and examples of how to use FeatureAlphaDropout with torch::nn::FeatureAlphaDropoutOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = FeatureAlphaDropoutImpl# class FeatureAlphaDropoutImpl : public torch::nn::detail::_DropoutNd\u003cFeatureAlphaDropoutImpl\u003e# See the documentation for torch::nn::FeatureAlphaDropoutOptions class to learn what constructor arguments are supported for this module. Example: FeatureAlphaDropout model(FeatureAlphaDropoutOptions(0.2).inplace(true)); Public Functions Tensor forward(const Tensor \u0026input)# virtual void pretty_print(std::ostream \u0026stream) const override# Pretty prints the FeatureAlphaDropout module into the given stream.",
       "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/dropout.html"
       },
       "datePublished": "2023-01-01T00:00:00Z",
       "dateModified": "2023-01-01T00:00:00Z"
     }
 

docsearch:languageen
llm:site-typedocumentation
llm:frameworkPyTorch
llm:descriptionDropout layers in PyTorch C++ — Dropout, Dropout2d, Dropout3d, AlphaDropout, and FeatureAlphaDropout.
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/dropout.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/dropout.html#dropout-layers
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#dropout
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
DropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn11DropoutImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn7DropoutE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
DropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout_impl
DropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout_impl
Dropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
DropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn11DropoutImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn7Dropout4ImplE
DropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn11DropoutImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn11DropoutImplE
https://pytorch.org/docs/main/nn.html#torch.nn.Dropouthttps://pytorch.org/docs/main/nn.html#torch.nn.Dropout
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/dropout.html#_CPPv4N5torch2nn11DropoutImpl7forwardE6Tensor
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4NK5torch2nn11DropoutImpl12pretty_printERNSt7ostreamE
Dropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#dropout2d-dropout3d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
Dropout2dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn9Dropout2dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
Dropout2dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout2d_impl
Dropout2dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout2d_impl
Dropout2dhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout2d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
Dropout2dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn9Dropout2d4ImplE
Dropout2dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout2dImplE
https://pytorch.org/docs/main/nn.html#torch.nn.Dropout2dhttps://pytorch.org/docs/main/nn.html#torch.nn.Dropout2d
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/dropout.html#_CPPv4N5torch2nn13Dropout2dImpl7forwardE6Tensor
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4NK5torch2nn13Dropout2dImpl12pretty_printERNSt7ostreamE
Dropout2dhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout2d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
Dropout3dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn9Dropout3dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
Dropout3dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout3d_impl
Dropout3dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout3d_impl
Dropout3dhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout3d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
Dropout3dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn9Dropout3d4ImplE
Dropout3dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout3dImplE
https://pytorch.org/docs/main/nn.html#torch.nn.Dropout3dhttps://pytorch.org/docs/main/nn.html#torch.nn.Dropout3d
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/dropout.html#_CPPv4N5torch2nn13Dropout3dImpl7forwardE6Tensor
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4NK5torch2nn13Dropout3dImpl12pretty_printERNSt7ostreamE
Dropout3dhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout3d
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#alphadropout
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
AlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn16AlphaDropoutImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn12AlphaDropoutE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
AlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_alpha_dropout_impl
AlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_alpha_dropout_impl
AlphaDropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_alpha_dropout
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
AlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn16AlphaDropoutImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn12AlphaDropout4ImplE
AlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn16AlphaDropoutImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn16AlphaDropoutImplE
Dropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_dropout
https://pytorch.org/docs/main/nn.html#torch.nn.AlphaDropouthttps://pytorch.org/docs/main/nn.html#torch.nn.AlphaDropout
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/dropout.html#_CPPv4N5torch2nn16AlphaDropoutImpl7forwardERK6Tensor
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4NK5torch2nn16AlphaDropoutImpl12pretty_printERNSt7ostreamE
AlphaDropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_alpha_dropout
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#featurealphadropout
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
FeatureAlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn23FeatureAlphaDropoutImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn19FeatureAlphaDropoutE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
FeatureAlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_feature_alpha_dropout_impl
FeatureAlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_feature_alpha_dropout_impl
FeatureAlphaDropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_feature_alpha_dropout
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
FeatureAlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn23FeatureAlphaDropoutImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn19FeatureAlphaDropout4ImplE
FeatureAlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn23FeatureAlphaDropoutImplE
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn23FeatureAlphaDropoutImplE
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/dropout.html#_CPPv4N5torch2nn23FeatureAlphaDropoutImpl7forwardERK6Tensor
#https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4NK5torch2nn23FeatureAlphaDropoutImpl12pretty_printERNSt7ostreamE
FeatureAlphaDropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#PyTorchclasstorch_1_1nn_1_1_feature_alpha_dropout
previous Normalization Layers https://docs.pytorch.org/cppdocs/api/nn/normalization.html
next Embedding Layers https://docs.pytorch.org/cppdocs/api/nn/embedding.html
PyData Sphinx Themehttps://pydata-sphinx-theme.readthedocs.io/en/stable/index.html
previous Normalization Layers https://docs.pytorch.org/cppdocs/api/nn/normalization.html
next Embedding Layers https://docs.pytorch.org/cppdocs/api/nn/embedding.html
Dropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#dropout
torch::nn::Dropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn7DropoutE
Implhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn7Dropout4ImplE
torch::nn::DropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn11DropoutImplE
forward()https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn11DropoutImpl7forwardE6Tensor
pretty_print()https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4NK5torch2nn11DropoutImpl12pretty_printERNSt7ostreamE
Dropout2d / Dropout3dhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#dropout2d-dropout3d
torch::nn::Dropout2dhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn9Dropout2dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn9Dropout2d4ImplE
torch::nn::Dropout2dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout2dImplE
forward()https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout2dImpl7forwardE6Tensor
pretty_print()https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4NK5torch2nn13Dropout2dImpl12pretty_printERNSt7ostreamE
torch::nn::Dropout3dhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn9Dropout3dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn9Dropout3d4ImplE
torch::nn::Dropout3dImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout3dImplE
forward()https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn13Dropout3dImpl7forwardE6Tensor
pretty_print()https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4NK5torch2nn13Dropout3dImpl12pretty_printERNSt7ostreamE
AlphaDropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#alphadropout
torch::nn::AlphaDropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn12AlphaDropoutE
Implhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn12AlphaDropout4ImplE
torch::nn::AlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn16AlphaDropoutImplE
forward()https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn16AlphaDropoutImpl7forwardERK6Tensor
pretty_print()https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4NK5torch2nn16AlphaDropoutImpl12pretty_printERNSt7ostreamE
FeatureAlphaDropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#featurealphadropout
torch::nn::FeatureAlphaDropouthttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn19FeatureAlphaDropoutE
Implhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn19FeatureAlphaDropout4ImplE
torch::nn::FeatureAlphaDropoutImplhttps://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn23FeatureAlphaDropoutImplE
forward()https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4N5torch2nn23FeatureAlphaDropoutImpl7forwardERK6Tensor
pretty_print()https://docs.pytorch.org/cppdocs/api/nn/dropout.html#_CPPv4NK5torch2nn23FeatureAlphaDropoutImpl12pretty_printERNSt7ostreamE
Show Source https://docs.pytorch.org/cppdocs/_sources/api/nn/dropout.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.