René's URL Explorer Experiment


Title: Convolution Layers — PyTorch main documentation

Description: Convolution layers in PyTorch C++ — Conv1d, Conv2d, Conv3d, and transposed convolutions.

Keywords:

direct link

Domain: docs.pytorch.org


Hey, it has json ld scripts:
    {
       "@context": "https://schema.org",
       "@type": "Article",
       "name": "Convolution Layers",
       "headline": "Convolution Layers",
       "description": "Convolution layers in PyTorch C++ \u2014 Conv1d, Conv2d, Conv3d, and transposed convolutions.",
       "url": "/api/nn/convolution.html",
       "articleBody": "Convolution Layers# Convolutional layers apply learnable filters to input data, extracting local features through sliding window operations. They are fundamental to CNNs for image, audio, and sequential data processing. Conv1d/2d/3d: Standard convolution for 1D sequences, 2D images, or 3D volumes ConvTranspose1d/2d/3d: Transposed convolution (deconvolution) for upsampling Key parameters: in_channels: Number of input channels out_channels: Number of output channels (number of filters) kernel_size: Size of the convolving kernel stride: Stride of the convolution (default: 1) padding: Zero-padding added to input (default: 0) dilation: Spacing between kernel elements (default: 1) groups: Number of blocked connections (default: 1, use in_channels for depthwise) Conv1d# Applies 1D convolution over an input signal composed of several input planes. class Conv1d : public torch::nn::ModuleHolder\u003cConv1dImpl\u003e# A ModuleHolder subclass for Conv1dImpl. See the documentation for Conv1dImpl class to learn what methods it provides, and examples of how to use Conv1d with torch::nn::Conv1dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = Conv1dImpl# class Conv1dImpl : public torch::nn::ConvNdImpl\u003c1, Conv1dImpl\u003e# Applies convolution over a 1-D input. See https://pytorch.org/docs/main/nn.html#torch.nn.Conv1d to learn about the exact behavior of this module. See the documentation for torch::nn::Conv1dOptions class to learn what constructor arguments are supported for this module. Example: Conv1d model(Conv1dOptions(3, 2, 3).stride(1).bias(false)); Public Functions inline Conv1dImpl(int64_t input_channels, int64_t output_channels, ExpandingArray\u003c1\u003e kernel_size)# explicit Conv1dImpl(Conv1dOptions options_)# Tensor forward(const Tensor \u0026input)# Conv2d# Applies 2D convolution over an input image. The most commonly used layer for image processing tasks. class Conv2d : public torch::nn::ModuleHolder\u003cConv2dImpl\u003e# A ModuleHolder subclass for Conv2dImpl. See the documentation for Conv2dImpl class to learn what methods it provides, and examples of how to use Conv2d with torch::nn::Conv2dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = Conv2dImpl# class Conv2dImpl : public torch::nn::ConvNdImpl\u003c2, Conv2dImpl\u003e# Applies convolution over a 2-D input. See https://pytorch.org/docs/main/nn.html#torch.nn.Conv2d to learn about the exact behavior of this module. See the documentation for torch::nn::Conv2dOptions class to learn what constructor arguments are supported for this module. Example: Conv2d model(Conv2dOptions(3, 2, 3).stride(1).bias(false)); Public Functions inline Conv2dImpl(int64_t input_channels, int64_t output_channels, ExpandingArray\u003c2\u003e kernel_size)# explicit Conv2dImpl(Conv2dOptions options_)# Tensor forward(const Tensor \u0026input)# Example: // Create Conv2d: 3 input channels, 64 output channels, 3x3 kernel auto conv = torch::nn::Conv2d( torch::nn::Conv2dOptions(3, 64, 3) .stride(1) .padding(1) .bias(true)); auto output = conv-\u003eforward(input); // input: [N, 3, H, W] Conv3d# Applies 3D convolution over an input volume (e.g., video frames or 3D medical images). class Conv3d : public torch::nn::ModuleHolder\u003cConv3dImpl\u003e# A ModuleHolder subclass for Conv3dImpl. See the documentation for Conv3dImpl class to learn what methods it provides, and examples of how to use Conv3d with torch::nn::Conv3dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = Conv3dImpl# class Conv3dImpl : public torch::nn::ConvNdImpl\u003c3, Conv3dImpl\u003e# Applies convolution over a 3-D input. See https://pytorch.org/docs/main/nn.html#torch.nn.Conv3d to learn about the exact behavior of this module. See the documentation for torch::nn::Conv3dOptions class to learn what constructor arguments are supported for this module. Example: Conv3d model(Conv3dOptions(3, 2, 3).stride(1).bias(false)); Public Functions inline Conv3dImpl(int64_t input_channels, int64_t output_channels, ExpandingArray\u003c3\u003e kernel_size)# explicit Conv3dImpl(Conv3dOptions options_)# Tensor forward(const Tensor \u0026input)# ConvTranspose1d# Applies 1D transposed convolution (fractionally-strided convolution) for upsampling. class ConvTranspose1d : public torch::nn::ModuleHolder\u003cConvTranspose1dImpl\u003e# A ModuleHolder subclass for ConvTranspose1dImpl. See the documentation for ConvTranspose1dImpl class to learn what methods it provides, and examples of how to use ConvTranspose1d with torch::nn::ConvTranspose1dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = ConvTranspose1dImpl# class ConvTranspose1dImpl : public torch::nn::ConvTransposeNdImpl\u003c1, ConvTranspose1dImpl\u003e# Applies the ConvTranspose1d function. See https://pytorch.org/docs/main/nn.html#torch.nn.ConvTranspose1d to learn about the exact behavior of this module. See the documentation for torch::nn::ConvTranspose1dOptions class to learn what constructor arguments are supported for this module. Example: ConvTranspose1d model(ConvTranspose1dOptions(3, 2, 3).stride(1).bias(false)); Public Functions inline ConvTranspose1dImpl(int64_t input_channels, int64_t output_channels, ExpandingArray\u003c1\u003e kernel_size)# explicit ConvTranspose1dImpl(ConvTranspose1dOptions options_)# Tensor forward(const Tensor \u0026input, const std::optional\u003cat::IntArrayRef\u003e \u0026output_size = std::nullopt)# Friends friend struct torch::nn::AnyModuleHolder ConvTranspose2d# Applies 2D transposed convolution for upsampling. Commonly used in decoder networks and generative models. class ConvTranspose2d : public torch::nn::ModuleHolder\u003cConvTranspose2dImpl\u003e# A ModuleHolder subclass for ConvTranspose2dImpl. See the documentation for ConvTranspose2dImpl class to learn what methods it provides, and examples of how to use ConvTranspose2d with torch::nn::ConvTranspose2dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = ConvTranspose2dImpl# class ConvTranspose2dImpl : public torch::nn::ConvTransposeNdImpl\u003c2, ConvTranspose2dImpl\u003e# Applies the ConvTranspose2d function. See https://pytorch.org/docs/main/nn.html#torch.nn.ConvTranspose2d to learn about the exact behavior of this module. See the documentation for torch::nn::ConvTranspose2dOptions class to learn what constructor arguments are supported for this module. Example: ConvTranspose2d model(ConvTranspose2dOptions(3, 2, 3).stride(1).bias(false)); Public Functions inline ConvTranspose2dImpl(int64_t input_channels, int64_t output_channels, ExpandingArray\u003c2\u003e kernel_size)# explicit ConvTranspose2dImpl(ConvTranspose2dOptions options_)# Tensor forward(const Tensor \u0026input, const std::optional\u003cat::IntArrayRef\u003e \u0026output_size = std::nullopt)# Friends friend struct torch::nn::AnyModuleHolder Example: // Create ConvTranspose2d for upsampling auto conv_transpose = torch::nn::ConvTranspose2d( torch::nn::ConvTranspose2dOptions(64, 32, 4) .stride(2) .padding(1)); ConvTranspose3d# Applies 3D transposed convolution for upsampling volumetric data. class ConvTranspose3d : public torch::nn::ModuleHolder\u003cConvTranspose3dImpl\u003e# A ModuleHolder subclass for ConvTranspose3dImpl. See the documentation for ConvTranspose3dImpl class to learn what methods it provides, and examples of how to use ConvTranspose3d with torch::nn::ConvTranspose3dOptions. See the documentation for ModuleHolder to learn about PyTorch\u2019s module storage semantics. Public Types using Impl = ConvTranspose3dImpl# class ConvTranspose3dImpl : public torch::nn::ConvTransposeNdImpl\u003c3, ConvTranspose3dImpl\u003e# Applies the ConvTranspose3d function. See https://pytorch.org/docs/main/nn.html#torch.nn.ConvTranspose3d to learn about the exact behavior of this module. See the documentation for torch::nn::ConvTranspose3dOptions class to learn what constructor arguments are supported for this module. Example: ConvTranspose3d model(ConvTranspose3dOptions(2, 2, 2).stride(1).bias(false)); Public Functions inline ConvTranspose3dImpl(int64_t input_channels, int64_t output_channels, ExpandingArray\u003c3\u003e kernel_size)# explicit ConvTranspose3dImpl(ConvTranspose3dOptions options_)# Tensor forward(const Tensor \u0026input, const std::optional\u003cat::IntArrayRef\u003e \u0026output_size = std::nullopt)# Friends friend struct torch::nn::AnyModuleHolder",
       "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/convolution.html"
       },
       "datePublished": "2023-01-01T00:00:00Z",
       "dateModified": "2023-01-01T00:00:00Z"
     }
 

docsearch:languageen
llm:site-typedocumentation
llm:frameworkPyTorch
llm:descriptionConvolution layers in PyTorch C++ — Conv1d, Conv2d, Conv3d, and transposed convolutions.
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/convolution.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/convolution.html#convolution-layers
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#conv1d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
Conv1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv1dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
Conv1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv1d_impl
Conv1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv1d_impl
Conv1dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv1d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
Conv1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv1d4ImplE
Conv1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv1dImplE
https://pytorch.org/docs/main/nn.html#torch.nn.Conv1dhttps://pytorch.org/docs/main/nn.html#torch.nn.Conv1d
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv1dImpl10Conv1dImplE7int64_t7int64_t14ExpandingArrayIXL1EEE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv1dImpl10Conv1dImplE13Conv1dOptions
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/convolution.html#_CPPv4N5torch2nn10Conv1dImpl7forwardERK6Tensor
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#conv2d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
Conv2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv2dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
Conv2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv2d_impl
Conv2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv2d_impl
Conv2dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv2d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
Conv2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv2d4ImplE
Conv2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv2dImplE
https://pytorch.org/docs/main/nn.html#torch.nn.Conv2dhttps://pytorch.org/docs/main/nn.html#torch.nn.Conv2d
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv2dImpl10Conv2dImplE7int64_t7int64_t14ExpandingArrayIXL2EEE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv2dImpl10Conv2dImplE13Conv2dOptions
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/convolution.html#_CPPv4N5torch2nn10Conv2dImpl7forwardERK6Tensor
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#conv3d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
Conv3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv3dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
Conv3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv3d_impl
Conv3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv3d_impl
Conv3dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv3d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
Conv3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv3d4ImplE
Conv3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv3dImplE
https://pytorch.org/docs/main/nn.html#torch.nn.Conv3dhttps://pytorch.org/docs/main/nn.html#torch.nn.Conv3d
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv3dImpl10Conv3dImplE7int64_t7int64_t14ExpandingArrayIXL3EEE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv3dImpl10Conv3dImplE13Conv3dOptions
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/convolution.html#_CPPv4N5torch2nn10Conv3dImpl7forwardERK6Tensor
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#convtranspose1d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
ConvTranspose1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose1dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
ConvTranspose1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose1d_impl
ConvTranspose1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose1d_impl
ConvTranspose1dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose1d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
ConvTranspose1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose1d4ImplE
ConvTranspose1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose1dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose1dImplE
ConvTranspose1dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose1d
https://pytorch.org/docs/main/nn.html#torch.nn.ConvTranspose1dhttps://pytorch.org/docs/main/nn.html#torch.nn.ConvTranspose1d
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose1dImpl19ConvTranspose1dImplE7int64_t7int64_t14ExpandingArrayIXL1EEE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose1dImpl19ConvTranspose1dImplE22ConvTranspose1dOptions
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/convolution.html#_CPPv4N5torch2nn19ConvTranspose1dImpl7forwardERK6TensorRKNSt8optionalIN2at11IntArrayRefEEE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#convtranspose2d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
ConvTranspose2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose2dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
ConvTranspose2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose2d_impl
ConvTranspose2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose2d_impl
ConvTranspose2dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose2d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
ConvTranspose2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose2d4ImplE
ConvTranspose2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose2dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose2dImplE
ConvTranspose2dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose2d
https://pytorch.org/docs/main/nn.html#torch.nn.ConvTranspose2dhttps://pytorch.org/docs/main/nn.html#torch.nn.ConvTranspose2d
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose2dImpl19ConvTranspose2dImplE7int64_t7int64_t14ExpandingArrayIXL2EEE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose2dImpl19ConvTranspose2dImplE22ConvTranspose2dOptions
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/convolution.html#_CPPv4N5torch2nn19ConvTranspose2dImpl7forwardERK6TensorRKNSt8optionalIN2at11IntArrayRefEEE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#convtranspose3d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4I0EN5torch2nn12ModuleHolderE
ConvTranspose3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose3dE
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
ConvTranspose3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose3d_impl
ConvTranspose3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose3d_impl
ConvTranspose3dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose3d
ModuleHolderhttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchclasstorch_1_1nn_1_1_module_holder
ConvTranspose3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose3d4ImplE
ConvTranspose3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose3dImplE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose3dImplE
ConvTranspose3dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#PyTorchclasstorch_1_1nn_1_1_conv_transpose3d
https://pytorch.org/docs/main/nn.html#torch.nn.ConvTranspose3dhttps://pytorch.org/docs/main/nn.html#torch.nn.ConvTranspose3d
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose3dImpl19ConvTranspose3dImplE7int64_t7int64_t14ExpandingArrayIXL3EEE
#https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose3dImpl19ConvTranspose3dImplE22ConvTranspose3dOptions
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/convolution.html#_CPPv4N5torch2nn19ConvTranspose3dImpl7forwardERK6TensorRKNSt8optionalIN2at11IntArrayRefEEE
previous Containers https://docs.pytorch.org/cppdocs/api/nn/containers.html
next Pooling Layers https://docs.pytorch.org/cppdocs/api/nn/pooling.html
PyData Sphinx Themehttps://pydata-sphinx-theme.readthedocs.io/en/stable/index.html
previous Containers https://docs.pytorch.org/cppdocs/api/nn/containers.html
next Pooling Layers https://docs.pytorch.org/cppdocs/api/nn/pooling.html
Conv1dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#conv1d
torch::nn::Conv1dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv1dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv1d4ImplE
torch::nn::Conv1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv1dImplE
Conv1dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv1dImpl10Conv1dImplE7int64_t7int64_t14ExpandingArrayIXL1EEE
Conv1dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv1dImpl10Conv1dImplE13Conv1dOptions
forward()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv1dImpl7forwardERK6Tensor
Conv2dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#conv2d
torch::nn::Conv2dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv2dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv2d4ImplE
torch::nn::Conv2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv2dImplE
Conv2dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv2dImpl10Conv2dImplE7int64_t7int64_t14ExpandingArrayIXL2EEE
Conv2dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv2dImpl10Conv2dImplE13Conv2dOptions
forward()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv2dImpl7forwardERK6Tensor
Conv3dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#conv3d
torch::nn::Conv3dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv3dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn6Conv3d4ImplE
torch::nn::Conv3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv3dImplE
Conv3dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv3dImpl10Conv3dImplE7int64_t7int64_t14ExpandingArrayIXL3EEE
Conv3dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv3dImpl10Conv3dImplE13Conv3dOptions
forward()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn10Conv3dImpl7forwardERK6Tensor
ConvTranspose1dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#convtranspose1d
torch::nn::ConvTranspose1dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose1dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose1d4ImplE
torch::nn::ConvTranspose1dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose1dImplE
ConvTranspose1dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose1dImpl19ConvTranspose1dImplE7int64_t7int64_t14ExpandingArrayIXL1EEE
ConvTranspose1dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose1dImpl19ConvTranspose1dImplE22ConvTranspose1dOptions
forward()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose1dImpl7forwardERK6TensorRKNSt8optionalIN2at11IntArrayRefEEE
ConvTranspose2dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#convtranspose2d
torch::nn::ConvTranspose2dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose2dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose2d4ImplE
torch::nn::ConvTranspose2dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose2dImplE
ConvTranspose2dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose2dImpl19ConvTranspose2dImplE7int64_t7int64_t14ExpandingArrayIXL2EEE
ConvTranspose2dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose2dImpl19ConvTranspose2dImplE22ConvTranspose2dOptions
forward()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose2dImpl7forwardERK6TensorRKNSt8optionalIN2at11IntArrayRefEEE
ConvTranspose3dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#convtranspose3d
torch::nn::ConvTranspose3dhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose3dE
Implhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn15ConvTranspose3d4ImplE
torch::nn::ConvTranspose3dImplhttps://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose3dImplE
ConvTranspose3dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose3dImpl19ConvTranspose3dImplE7int64_t7int64_t14ExpandingArrayIXL3EEE
ConvTranspose3dImpl()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose3dImpl19ConvTranspose3dImplE22ConvTranspose3dOptions
forward()https://docs.pytorch.org/cppdocs/api/nn/convolution.html#_CPPv4N5torch2nn19ConvTranspose3dImpl7forwardERK6TensorRKNSt8optionalIN2at11IntArrayRefEEE
Show Source https://docs.pytorch.org/cppdocs/_sources/api/nn/convolution.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.