René's URL Explorer Experiment


Title: Functional API — PyTorch main documentation

Description: Functional API in PyTorch C++ — torch::nn::functional stateless operations for neural networks.

Keywords:

direct link

Domain: docs.pytorch.org


Hey, it has json ld scripts:
    {
       "@context": "https://schema.org",
       "@type": "Article",
       "name": "Functional API",
       "headline": "Functional API",
       "description": "Functional API in PyTorch C++ \u2014 torch::nn::functional stateless operations for neural networks.",
       "url": "/api/nn/functional.html",
       "articleBody": "Functional API# The torch::nn::functional namespace provides stateless versions of neural network operations. Unlike module classes, functional operations do not hold learnable parameters \u2014 you pass weights explicitly. When to use functional vs modules: Use modules (torch::nn::Conv2d) when you need learnable parameters managed automatically (training, saving, loading). Use functional (torch::nn::functional::conv2d) when you already have weights as tensors, or for operations without parameters (e.g., relu). #include \u003ctorch/nn/functional.h\u003e namespace F = torch::nn::functional; // Stateless activation \u2014 no module needed auto output = F::relu(input); // Convolution with explicit weight tensor auto output = F::conv2d(input, weight, F::Conv2dFuncOptions().stride(1).padding(1)); // Softmax along a dimension auto probs = F::softmax(logits, F::SoftmaxFuncOptions(/*dim=*/1)); Activation Functions# inline Tensor torch::nn::functional::elu(Tensor input, const ELUFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.elu about the exact behavior of this functional. See the documentation for torch::nn::functional::ELUFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::elu(x, F::ELUFuncOptions().alpha(0.42).inplace(true)); inline Tensor torch::nn::functional::selu(Tensor input, const SELUFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.selu about the exact behavior of this functional. See the documentation for torch::nn::functional::SELUFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::selu(input, F::SELUFuncOptions(false)); inline Tensor torch::nn::functional::hardshrink(const Tensor \u0026input, const HardshrinkFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.hardshrink about the exact behavior of this functional. See the documentation for torch::nn::functional::HardshrinkFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::hardshrink(x, F::HardshrinkFuncOptions().lambda(0.42)); inline Tensor torch::nn::functional::hardtanh(Tensor input, const HardtanhFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.hardtanh about the exact behavior of this functional. See the documentation for torch::nn::functional::HardtanhFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::hardtanh(x, F::HardtanhFuncOptions().min_val(-1.0).max_val(1.0).inplace(true)); inline Tensor torch::nn::functional::leaky_relu(Tensor input, const LeakyReLUFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.leaky_relu about the exact behavior of this functional. See the documentation for torch::nn::functional::LeakyReLUFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::leaky_relu(x, F::LeakyReLUFuncOptions().negative_slope(0.42).inplace(true)); inline Tensor torch::nn::functional::logsigmoid(const Tensor \u0026input)# inline Tensor torch::nn::functional::glu(const Tensor \u0026input, const GLUFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.glu about the exact behavior of this functional. See the documentation for torch::nn::functional::GLUFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::glu(input, GLUFuncOptions(1)); inline Tensor torch::nn::functional::gelu(const Tensor \u0026input, const GELUFuncOptions \u0026options = {})# inline Tensor torch::nn::functional::silu(const Tensor \u0026input)# inline Tensor torch::nn::functional::mish(const Tensor \u0026input)# inline Tensor torch::nn::functional::prelu(const Tensor \u0026input, const Tensor \u0026weight)# inline Tensor torch::nn::functional::relu(Tensor input, const ReLUFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.relu about the exact behavior of this functional. See the documentation for torch::nn::functional::ReLUFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::relu(x, F::ReLUFuncOptions().inplace(true)); inline Tensor torch::nn::functional::relu6(Tensor input, const ReLU6FuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.relu6 about the exact behavior of this functional. See the documentation for torch::nn::functional::ReLU6FuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::relu6(x, F::ReLU6FuncOptions().inplace(true)); inline Tensor torch::nn::functional::rrelu(Tensor input, const RReLUFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.rrelu about the exact behavior of this functional. See the documentation for torch::nn::functional::RReLUFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::rrelu(x, F::RReLUFuncOptions().lower(0.1).upper(0.4).inplace(true)); inline Tensor torch::nn::functional::celu(Tensor input, const CELUFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.celu about the exact behavior of this functional. See the documentation for torch::nn::functional::CELUFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::celu(x, F::CELUFuncOptions().alpha(0.42).inplace(true)); inline Tensor torch::nn::functional::softplus(const Tensor \u0026input, const SoftplusFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softplus about the exact behavior of this functional. See the documentation for torch::nn::functional::SoftplusFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::softplus(x, F::SoftplusFuncOptions().beta(0.5).threshold(3.0)); inline Tensor torch::nn::functional::softshrink(const Tensor \u0026input, const SoftshrinkFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softshrink about the exact behavior of this functional. See the documentation for torch::nn::functional::SoftshrinkFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::softshrink(x, F::SoftshrinkFuncOptions(0.42)); inline Tensor torch::nn::functional::softsign(const Tensor \u0026input)# inline Tensor torch::nn::functional::tanhshrink(const Tensor \u0026input)# inline Tensor torch::nn::functional::threshold(Tensor input, const ThresholdFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.threshold about the exact behavior of this functional. See the documentation for torch::nn::functional::ThresholdFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::threshold(x, F::ThresholdFuncOptions(0.5, 0.5).inplace(true)); inline Tensor torch::nn::functional::softmax(const Tensor \u0026input, const SoftmaxFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softmax about the exact behavior of this functional. See the documentation for torch::nn::functional::SoftmaxFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::softmax(input, F::SoftmaxFuncOptions(1)); inline Tensor torch::nn::functional::softmin(const Tensor \u0026input, const SoftminFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softmin about the exact behavior of this functional. See the documentation for torch::nn::functional::SoftminFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::softmin(input, F::SoftminFuncOptions(1)); inline Tensor torch::nn::functional::log_softmax(const Tensor \u0026input, const LogSoftmaxFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.log_softmax about the exact behavior of this functional. See the documentation for torch::nn::functional::LogSoftmaxFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::log_softmax(input, LogSoftmaxFuncOptions(1)); inline Tensor torch::nn::functional::gumbel_softmax(const Tensor \u0026logits, const GumbelSoftmaxFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.gumbel_softmax about the exact behavior of this functional. See the documentation for torch::nn::functional::GumbelSoftmaxFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::gumbel_softmax(logits, F::GumbelSoftmaxFuncOptions().hard(true).dim(-1)); Convolution Functions# inline Tensor torch::nn::functional::conv1d(const Tensor \u0026input, const Tensor \u0026weight, const Conv1dFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv1d about the exact behavior of this functional. See the documentation for torch::nn::functional::Conv1dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::conv1d(x, weight, F::Conv1dFuncOptions().stride(1)); inline Tensor torch::nn::functional::conv2d(const Tensor \u0026input, const Tensor \u0026weight, const Conv2dFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv2d about the exact behavior of this functional. See the documentation for torch::nn::functional::Conv2dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::conv2d(x, weight, F::Conv2dFuncOptions().stride(1)); inline Tensor torch::nn::functional::conv3d(const Tensor \u0026input, const Tensor \u0026weight, const Conv3dFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv3d about the exact behavior of this functional. See the documentation for torch::nn::functional::Conv3dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::conv3d(x, weight, F::Conv3dFuncOptions().stride(1)); inline Tensor torch::nn::functional::conv_transpose1d(const Tensor \u0026input, const Tensor \u0026weight, const ConvTranspose1dFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv_transpose1d about the exact behavior of this functional. See the documentation for torch::nn::functional::ConvTranspose1dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::conv_transpose1d(x, weight, F::ConvTranspose1dFuncOptions().stride(1)); inline Tensor torch::nn::functional::conv_transpose2d(const Tensor \u0026input, const Tensor \u0026weight, const ConvTranspose2dFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv_transpose2d about the exact behavior of this functional. See the documentation for torch::nn::functional::ConvTranspose2dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::conv_transpose2d(x, weight, F::ConvTranspose2dFuncOptions().stride(1)); inline Tensor torch::nn::functional::conv_transpose3d(const Tensor \u0026input, const Tensor \u0026weight, const ConvTranspose3dFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv_transpose3d about the exact behavior of this functional. See the documentation for torch::nn::functional::ConvTranspose3dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::conv_transpose3d(x, weight, F::ConvTranspose3dFuncOptions().stride(1)); Pooling Functions# inline Tensor torch::nn::functional::avg_pool1d(const Tensor \u0026input, const AvgPool1dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.avg_pool1d about the exact behavior of this functional. See the documentation for torch::nn::functional::AvgPool1dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::avg_pool1d(x, F::AvgPool1dFuncOptions(3).stride(2)); inline Tensor torch::nn::functional::avg_pool2d(const Tensor \u0026input, const AvgPool2dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.avg_pool2d about the exact behavior of this functional. See the documentation for torch::nn::functional::AvgPool2dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::avg_pool2d(x, F::AvgPool2dFuncOptions(3).stride(2)); inline Tensor torch::nn::functional::avg_pool3d(const Tensor \u0026input, const AvgPool3dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.avg_pool3d about the exact behavior of this functional. See the documentation for torch::nn::functional::AvgPool3dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::avg_pool3d(x, F::AvgPool3dFuncOptions(3).stride(2)); inline Tensor torch::nn::functional::max_pool1d(const Tensor \u0026input, const MaxPool1dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_pool1d about the exact behavior of this functional. See the documentation for torch::nn::functional::MaxPool1dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::max_pool1d(x, F::MaxPool1dFuncOptions(3).stride(2)); inline Tensor torch::nn::functional::max_pool2d(const Tensor \u0026input, const MaxPool2dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_pool2d about the exact behavior of this functional. See the documentation for torch::nn::functional::MaxPool2dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::max_pool2d(x, F::MaxPool2dFuncOptions(3).stride(2)); inline Tensor torch::nn::functional::max_pool3d(const Tensor \u0026input, const MaxPool3dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_pool3d about the exact behavior of this functional. See the documentation for torch::nn::functional::MaxPool3dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::max_pool3d(x, F::MaxPool3dFuncOptions(3).stride(2)); inline std::tuple\u003cTensor, Tensor\u003e torch::nn::functional::max_pool1d_with_indices(const Tensor \u0026input, const MaxPool1dFuncOptions \u0026options)# See the documentation for torch::nn::functional::MaxPool1dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::max_pool1d_with_indices(x, F::MaxPool1dFuncOptions(3).stride(2)); inline std::tuple\u003cTensor, Tensor\u003e torch::nn::functional::max_pool2d_with_indices(const Tensor \u0026input, const MaxPool2dFuncOptions \u0026options)# See the documentation for torch::nn::functional::MaxPool2dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::max_pool2d_with_indices(x, F::MaxPool2dFuncOptions(3).stride(2)); inline std::tuple\u003cTensor, Tensor\u003e torch::nn::functional::max_pool3d_with_indices(const Tensor \u0026input, const MaxPool3dFuncOptions \u0026options)# See the documentation for torch::nn::functional::MaxPool3dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::max_pool3d_with_indices(x, F::MaxPool3dFuncOptions(3).stride(2)); inline Tensor torch::nn::functional::adaptive_max_pool1d(const Tensor \u0026input, const AdaptiveMaxPool1dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_max_pool1d about the exact behavior of this functional. See the documentation for torch::nn::functional::AdaptiveMaxPool1dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::adaptive_max_pool1d(x, F::AdaptiveMaxPool1dFuncOptions(3)); inline Tensor torch::nn::functional::adaptive_max_pool2d(const Tensor \u0026input, const AdaptiveMaxPool2dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_max_pool2d about the exact behavior of this functional. See the documentation for torch::nn::functional::AdaptiveMaxPool2dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::adaptive_max_pool2d(x, F::AdaptiveMaxPool2dFuncOptions(3)); inline Tensor torch::nn::functional::adaptive_max_pool3d(const Tensor \u0026input, const AdaptiveMaxPool3dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_max_pool3d about the exact behavior of this functional. See the documentation for torch::nn::functional::AdaptiveMaxPool3dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::adaptive_max_pool3d(x, F::AdaptiveMaxPool3dFuncOptions(3)); inline Tensor torch::nn::functional::adaptive_avg_pool1d(const Tensor \u0026input, const AdaptiveAvgPool1dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_avg_pool1d about the exact behavior of this functional. See the documentation for torch::nn::functional::AdaptiveAvgPool1dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::adaptive_avg_pool1d(x, F::AdaptiveAvgPool1dFuncOptions(3)); inline Tensor torch::nn::functional::adaptive_avg_pool2d(const Tensor \u0026input, const AdaptiveAvgPool2dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_avg_pool2d about the exact behavior of this functional. See the documentation for torch::nn::functional::AdaptiveAvgPool2dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::adaptive_avg_pool2d(x, F::AdaptiveAvgPool2dFuncOptions(3)); inline Tensor torch::nn::functional::adaptive_avg_pool3d(const Tensor \u0026input, const AdaptiveAvgPool3dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_avg_pool3d about the exact behavior of this functional. See the documentation for torch::nn::functional::AdaptiveAvgPool3dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::adaptive_avg_pool3d(x, F::AdaptiveAvgPool3dFuncOptions(3)); inline Tensor torch::nn::functional::max_unpool1d(const Tensor \u0026input, const Tensor \u0026indices, const MaxUnpool1dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_unpool1d about the exact behavior of this functional. See the documentation for torch::nn::functional::MaxUnpool1dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::max_unpool1d(x, indices, F::MaxUnpool1dFuncOptions(3).stride(2).padding(1)); inline Tensor torch::nn::functional::max_unpool2d(const Tensor \u0026input, const Tensor \u0026indices, const MaxUnpool2dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_unpool2d about the exact behavior of this functional. See the documentation for torch::nn::functional::MaxUnpool2dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::max_unpool2d(x, indices, F::MaxUnpool2dFuncOptions(3).stride(2).padding(1)); inline Tensor torch::nn::functional::max_unpool3d(const Tensor \u0026input, const Tensor \u0026indices, const MaxUnpool3dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_unpool3d about the exact behavior of this functional. See the documentation for torch::nn::functional::MaxUnpool3dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::max_unpool3d(x, indices, F::MaxUnpool3dFuncOptions(3)); inline Tensor torch::nn::functional::fractional_max_pool2d(const Tensor \u0026input, const FractionalMaxPool2dFuncOptions \u0026options)# See the documentation for torch::nn::functional::FractionalMaxPool2dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::fractional_max_pool2d(x, F::FractionalMaxPool2dFuncOptions(3).output_size(2)); inline Tensor torch::nn::functional::fractional_max_pool3d(const Tensor \u0026input, const FractionalMaxPool3dFuncOptions \u0026options)# See the documentation for torch::nn::functional::FractionalMaxPool3dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::fractional_max_pool3d(x, F::FractionalMaxPool3dFuncOptions(3).output_size(2)); inline Tensor torch::nn::functional::lp_pool1d(const Tensor \u0026input, const LPPool1dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.lp_pool1d about the exact behavior of this functional. See the documentation for torch::nn::functional::LPPool1dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::lp_pool1d(x, F::LPPool1dFuncOptions(2, 3).stride(2)); inline Tensor torch::nn::functional::lp_pool2d(const Tensor \u0026input, const LPPool2dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.lp_pool2d about the exact behavior of this functional. See the documentation for torch::nn::functional::LPPool2dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::lp_pool2d(x, F::LPPool2dFuncOptions(2, {2, 3}).stride(2)); inline Tensor torch::nn::functional::lp_pool3d(const Tensor \u0026input, const LPPool3dFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.lp_pool3d about the exact behavior of this functional. See the documentation for torch::nn::functional::LPPool3dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::lp_pool3d(x, F::LPPool3dFuncOptions(3, {3, 3, 5}).stride(3)); Linear Functions# inline Tensor torch::nn::functional::linear(const Tensor \u0026input, const Tensor \u0026weight, const Tensor \u0026bias = {})# inline Tensor torch::nn::functional::bilinear(const Tensor \u0026input1, const Tensor \u0026input2, const Tensor \u0026weight, const Tensor \u0026bias = Tensor())# Dropout Functions# inline Tensor torch::nn::functional::dropout(Tensor input, const DropoutFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.dropout about the exact behavior of this functional. See the documentation for torch::nn::functional::DropoutFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::dropout(input, F::DropoutFuncOptions().p(0.5)); inline Tensor torch::nn::functional::dropout2d(Tensor input, const Dropout2dFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.dropout2d about the exact behavior of this functional. See the documentation for torch::nn::functional::Dropout2dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::dropout2d(input, F::Dropout2dFuncOptions().p(0.5)); inline Tensor torch::nn::functional::dropout3d(Tensor input, const Dropout3dFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.dropout3d about the exact behavior of this functional. See the documentation for torch::nn::functional::Dropout3dFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::dropout3d(input, F::Dropout3dFuncOptions().p(0.5)); inline Tensor torch::nn::functional::alpha_dropout(Tensor input, const AlphaDropoutFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.alpha_dropout about the exact behavior of this functional. See the documentation for torch::nn::functional::AlphaDropoutFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::alpha_dropout(input, F::AlphaDropoutFuncOptions().p(0.5).training(false)); inline Tensor torch::nn::functional::feature_alpha_dropout(Tensor input, const FeatureAlphaDropoutFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.feature_alpha_dropout about the exact behavior of this functional. See the documentation for torch::nn::functional::FeatureAlphaDropoutFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::feature_alpha_dropout(input, F::FeatureAlphaDropoutFuncOptions().p(0.5).training(false)); Embedding Functions# inline Tensor torch::nn::functional::one_hot(const Tensor \u0026tensor, int64_t num_classes = -1)# inline Tensor torch::nn::functional::embedding(const Tensor \u0026input, const Tensor \u0026weight, const EmbeddingFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.embedding about the exact behavior of this functional. See the documentation for torch::nn::functional::EmbeddingFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::embedding(input, weight, F::EmbeddingFuncOptions().norm_type(2.5).scale_grad_by_freq(true).sparse(true)); inline Tensor torch::nn::functional::embedding_bag(const Tensor \u0026input, const Tensor \u0026weight, const EmbeddingBagFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.embedding_bag about the exact behavior of this functional. See the documentation for torch::nn::functional::EmbeddingBagFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::embedding_bag(input, weight, F::EmbeddingBagFuncOptions().mode(torch::kSum).offsets(offsets)); Normalization Functions# inline Tensor torch::nn::functional::batch_norm(const Tensor \u0026input, const Tensor \u0026running_mean, const Tensor \u0026running_var, const BatchNormFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.batch_norm about the exact behavior of this functional. See the documentation for torch::nn::functional::BatchNormFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::batch_norm(input, mean, variance, F::BatchNormFuncOptions().weight(weight).bias(bias).momentum(0.1).eps(1e-05).training(false)); inline Tensor torch::nn::functional::instance_norm(const Tensor \u0026input, const InstanceNormFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.instance_norm about the exact behavior of this functional. See the documentation for torch::nn::functional::InstanceNormFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::instance_norm(input, F::InstanceNormFuncOptions().running_mean(mean).running_var(variance).weight(weight).bias(bias).momentum(0.1).eps(1e-5)); inline Tensor torch::nn::functional::layer_norm(const Tensor \u0026input, const LayerNormFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.layer_norm about the exact behavior of this functional. See the documentation for torch::nn::functional::LayerNormFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::layer_norm(input, F::LayerNormFuncOptions({2, 2}).eps(2e-5)); inline Tensor torch::nn::functional::group_norm(const Tensor \u0026input, const GroupNormFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.group_norm about the exact behavior of this functional. See the documentation for torch::nn::functional::GroupNormFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::group_norm(input, F::GroupNormFuncOptions(2).eps(2e-5)); inline Tensor torch::nn::functional::local_response_norm(const Tensor \u0026input, const LocalResponseNormFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.local_response_norm about the exact behavior of this functional. See the documentation for torch::nn::functional::LocalResponseNormFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::local_response_norm(x, F::LocalResponseNormFuncOptions(2)); inline Tensor torch::nn::functional::normalize(const Tensor \u0026input, NormalizeFuncOptions options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.normalize about the exact behavior of this functional. See the documentation for torch::nn::functional::NormalizeFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::normalize(input, F::NormalizeFuncOptions().p(1).dim(-1)); Loss Functions# inline Tensor torch::nn::functional::l1_loss(const Tensor \u0026input, const Tensor \u0026target, const L1LossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.l1_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::L1LossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::l1_loss(input, target, F::L1LossFuncOptions(torch::kNone)); inline Tensor torch::nn::functional::mse_loss(const Tensor \u0026input, const Tensor \u0026target, const MSELossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.mse_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::MSELossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::mse_loss(input, target, F::MSELossFuncOptions(torch::kNone)); inline Tensor torch::nn::functional::binary_cross_entropy(const Tensor \u0026input, const Tensor \u0026target, const BinaryCrossEntropyFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.binary_cross_entropy about the exact behavior of this functional. See the documentation for torch::nn::functional::BinaryCrossEntropyFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::binary_cross_entropy(input, target, F::BinaryCrossEntropyFuncOptions().weight(weight)); inline Tensor torch::nn::functional::binary_cross_entropy_with_logits(const Tensor \u0026input, const Tensor \u0026target, const BinaryCrossEntropyWithLogitsFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.binary_cross_entropy_with_logits about the exact behavior of this functional. See the documentation for torch::nn::functional::BinaryCrossEntropyWithLogitsFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::binary_cross_entropy_with_logits(input, target, F::BinaryCrossEntropyWithLogitsFuncOptions().pos_weight(pos_weight).reduction(torch::kSum)); inline Tensor torch::nn::functional::cross_entropy(const Tensor \u0026input, const Tensor \u0026target, const CrossEntropyFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.cross_entropy about the exact behavior of this functional. See the documentation for torch::nn::functional::CrossEntropyFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::cross_entropy(input, target, F::CrossEntropyFuncOptions().ignore_index(-100).reduction(torch::kMean)); inline Tensor torch::nn::functional::nll_loss(const Tensor \u0026input, const Tensor \u0026target, const NLLLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.nll_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::NLLLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::nll_loss(input, target, F::NLLLossFuncOptions().ignore_index(-100).reduction(torch::kMean)); inline Tensor torch::nn::functional::kl_div(const Tensor \u0026input, const Tensor \u0026target, const KLDivFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.kl_div about the exact behavior of this functional. See the documentation for torch::nn::functional::KLDivFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::kl_div(input, target, F::KLDivFuncOptions.reduction(torch::kNone).log_target(false)); inline Tensor torch::nn::functional::smooth_l1_loss(const Tensor \u0026input, const Tensor \u0026target, const SmoothL1LossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.smooth_l1_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::SmoothL1LossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::smooth_l1_loss(input, target, F::SmoothL1LossFuncOptions(torch::kNone)); inline Tensor torch::nn::functional::huber_loss(const Tensor \u0026input, const Tensor \u0026target, const HuberLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.huber_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::HuberLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::huber_loss(input, target, F::HuberLossFuncOptions().reduction(torch::kNone).delta(0.5)); inline Tensor torch::nn::functional::hinge_embedding_loss(const Tensor \u0026input, const Tensor \u0026target, const HingeEmbeddingLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.hinge_embedding_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::HingeEmbeddingLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::hinge_embedding_loss(input, target, F::HingeEmbeddingLossFuncOptions().margin(2)); inline Tensor torch::nn::functional::multi_margin_loss(const Tensor \u0026input, const Tensor \u0026target, const MultiMarginLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.multi_margin_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::MultiMarginLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::multi_margin_loss(input, target, F::MultiMarginLossFuncOptions().margin(2).weight(weight)); inline Tensor torch::nn::functional::cosine_embedding_loss(const Tensor \u0026input1, const Tensor \u0026input2, const Tensor \u0026target, const CosineEmbeddingLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.cosine_embedding_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::CosineEmbeddingLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::cosine_embedding_loss(input1, input2, target, F::CosineEmbeddingLossFuncOptions().margin(0.5)); inline Tensor torch::nn::functional::margin_ranking_loss(const Tensor \u0026input1, const Tensor \u0026input2, const Tensor \u0026target, const MarginRankingLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.margin_ranking_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::MarginRankingLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::margin_ranking_loss(input1, input2, target, F::MarginRankingLossFuncOptions().margin(0.5).reduction(torch::kSum)); inline Tensor torch::nn::functional::multilabel_margin_loss(const Tensor \u0026input, const Tensor \u0026target, const MultilabelMarginLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.multilabel_margin_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::MultilabelMarginLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::multilabel_margin_loss(input, target, F::MultilabelMarginLossFuncOptions(torch::kNone)); inline Tensor torch::nn::functional::soft_margin_loss(const Tensor \u0026input, const Tensor \u0026target, const SoftMarginLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.soft_margin_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::SoftMarginLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::soft_margin_loss(input, target, F::SoftMarginLossFuncOptions(torch::kNone)); inline Tensor torch::nn::functional::multilabel_soft_margin_loss(const Tensor \u0026input, const Tensor \u0026target, const MultilabelSoftMarginLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.multilabel_soft_margin_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::MultilabelSoftMarginLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::multilabel_soft_margin_loss(input, target, F::MultilabelSoftMarginLossFuncOptions().reduction(torch::kNone).weight(weight)); inline Tensor torch::nn::functional::triplet_margin_loss(const Tensor \u0026anchor, const Tensor \u0026positive, const Tensor \u0026negative, const TripletMarginLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.triplet_margin_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::TripletMarginLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::triplet_margin_loss(anchor, positive, negative, F::TripletMarginLossFuncOptions().margin(1.0)); inline Tensor torch::nn::functional::triplet_margin_with_distance_loss(const Tensor \u0026anchor, const Tensor \u0026positive, const Tensor \u0026negative, const TripletMarginWithDistanceLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.triplet_margin_with_distance_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::TripletMarginWithDistanceLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::triplet_margin_with_distance_loss(anchor, positive, negative, F::TripletMarginWithDistanceLossFuncOptions().margin(1.0)); inline Tensor torch::nn::functional::ctc_loss(const Tensor \u0026log_probs, const Tensor \u0026targets, const Tensor \u0026input_lengths, const Tensor \u0026target_lengths, const CTCLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.ctc_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::CTCLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::ctc_loss(log_probs, targets, input_lengths, target_lengths, F::CTCLossFuncOptions().reduction(torch::kNone)); inline Tensor torch::nn::functional::poisson_nll_loss(const Tensor \u0026input, const Tensor \u0026target, const PoissonNLLLossFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.poisson_nll_loss about the exact behavior of this functional. See the documentation for torch::nn::functional::PoissonNLLLossFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::poisson_nll_loss(input, target, F::PoissonNLLLossFuncOptions().reduction(torch::kNone)); Distance Functions# inline Tensor torch::nn::functional::cosine_similarity(const Tensor \u0026x1, const Tensor \u0026x2, const CosineSimilarityFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.cosine_similarity about the exact behavior of this functional. See the documentation for torch::nn::functional::CosineSimilarityFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::cosine_similarity(input1, input2, F::CosineSimilarityFuncOptions().dim(1)); inline Tensor torch::nn::functional::pairwise_distance(const Tensor \u0026x1, const Tensor \u0026x2, const PairwiseDistanceFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.pairwise_distance about the exact behavior of this functional. See the documentation for torch::nn::functional::PairwiseDistanceFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::pairwise_distance(input1, input2, F::PairwiseDistanceFuncOptions().p(1)); inline Tensor torch::nn::functional::pdist(const Tensor \u0026input, double p = 2.0)# Computes the p-norm distance between every pair of row vectors in the input. This function will be faster if the rows are contiguous. Vision Functions# inline Tensor torch::nn::functional::interpolate(const Tensor \u0026input, const InterpolateFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.interpolate about the exact behavior of this functional. See the documentation for torch::nn::functional::InterpolateFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::interpolate(input, F::InterpolateFuncOptions().size({4}).mode(torch::kNearest)); inline Tensor torch::nn::functional::affine_grid(const Tensor \u0026theta, const IntArrayRef \u0026size, bool align_corners = false)# inline Tensor torch::nn::functional::grid_sample(const Tensor \u0026input, const Tensor \u0026grid, const GridSampleFuncOptions \u0026options = {})# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.grid_sample about the exact behavior of this functional. See the documentation for torch::nn::functional::GridSampleFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::grid_sample(input, grid, F::GridSampleFuncOptions().mode(torch::kBilinear).padding_mode(torch::kZeros).align_corners(true)); inline Tensor torch::nn::functional::pad(const Tensor \u0026input, const PadFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.pad about the exact behavior of this functional. See the documentation for torch::nn::functional::PadFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::pad(input, F::PadFuncOptions({1, 2, 2, 1, 1, 2}).mode(torch::kReplicate)); inline Tensor torch::nn::functional::pixel_shuffle(const Tensor \u0026input, const PixelShuffleFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.pixel_shuffle about the exact behavior of this functional. See the documentation for torch::nn::functional::PixelShuffleFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::pixel_shuffle(x, F::PixelShuffleFuncOptions(2)); inline Tensor torch::nn::functional::pixel_unshuffle(const Tensor \u0026input, const PixelUnshuffleFuncOptions \u0026options)# Fold/Unfold# inline Tensor torch::nn::functional::fold(const Tensor \u0026input, const FoldFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.fold about the exact behavior of this functional. See the documentation for torch::nn::functional::FoldFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::fold(input, F::FoldFuncOptions({3, 2}, {2, 2})); inline Tensor torch::nn::functional::unfold(const Tensor \u0026input, const UnfoldFuncOptions \u0026options)# See https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.unfold about the exact behavior of this functional. See the documentation for torch::nn::functional::UnfoldFuncOptions class to learn what optional arguments are supported for this functional. Example: namespace F = torch::nn::functional; F::unfold(input, F::UnfoldFuncOptions({2, 2}).padding(1).stride(2)); Functional Options Structs# Each functional operation that takes configuration uses a corresponding options struct. The naming convention is \u003cOperation\u003eFuncOptions. Activation Options: using torch::nn::functional::ELUFuncOptions = ELUOptions# Options for torch::nn::functional::elu. See the documentation for torch::nn::ELUOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::elu(x, F::ELUFuncOptions().alpha(0.42).inplace(true)); using torch::nn::functional::SELUFuncOptions = SELUOptions# Options for torch::nn::functional::selu. See the documentation for torch::nn::SELUOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::selu(input, F::SELUFuncOptions(false)); using torch::nn::functional::GLUFuncOptions = GLUOptions# Options for torch::nn::functional::glu. See the documentation for torch::nn::GLUOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::glu(input, GLUFuncOptions(1)); using torch::nn::functional::GELUFuncOptions = GELUOptions# Options for torch::nn::functional::gelu. See the documentation for torch::nn::GELUOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::gelu(input, F::GELUFuncOptions().approximate(\"none\")); using torch::nn::functional::HardshrinkFuncOptions = HardshrinkOptions# Options for torch::nn::functional::hardshrink. See the documentation for torch::nn::HardshrinkOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::hardshrink(x, F::HardshrinkFuncOptions().lambda(0.42)); using torch::nn::functional::HardtanhFuncOptions = HardtanhOptions# Options for torch::nn::functional::hardtanh. See the documentation for torch::nn::HardtanhOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::hardtanh(x, F::HardtanhFuncOptions().min_val(-1.0).max_val(1.0).inplace(true)); using torch::nn::functional::LeakyReLUFuncOptions = LeakyReLUOptions# Options for torch::nn::functional::leaky_relu. See the documentation for torch::nn::LeakyReLUOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::leaky_relu(x, F::LeakyReLUFuncOptions().negative_slope(0.42).inplace(true)); using torch::nn::functional::ReLUFuncOptions = ReLUOptions# Options for torch::nn::functional::relu. See the documentation for torch::nn::ReLUOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::relu(x, F::ReLUFuncOptions().inplace(true)); using torch::nn::functional::ReLU6FuncOptions = ReLU6Options# Options for torch::nn::functional::relu6. See the documentation for torch::nn::ReLU6Options class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::relu6(x, F::ReLU6FuncOptions().inplace(true)); using torch::nn::functional::CELUFuncOptions = CELUOptions# Options for torch::nn::functional::celu. See the documentation for torch::nn::CELUOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::celu(x, F::CELUFuncOptions().alpha(0.42).inplace(true)); using torch::nn::functional::SoftplusFuncOptions = SoftplusOptions# Options for torch::nn::functional::softplus. See the documentation for torch::nn::SoftplusOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::softplus(x, F::SoftplusFuncOptions().beta(0.5).threshold(3.0)); using torch::nn::functional::SoftshrinkFuncOptions = SoftshrinkOptions# Options for torch::nn::functional::softshrink. See the documentation for torch::nn::SoftshrinkOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::softshrink(x, F::SoftshrinkFuncOptions(0.42)); using torch::nn::functional::ThresholdFuncOptions = ThresholdOptions# Options for torch::nn::functional::threshold. See the documentation for torch::nn::ThresholdOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::threshold(x, F::ThresholdFuncOptions(0.5, 0.5).inplace(true)); Convolution Options: using torch::nn::functional::Conv1dFuncOptions = ConvFuncOptions\u003c1\u003e# ConvFuncOptions specialized for torch::nn::functional::conv1d. Example: namespace F = torch::nn::functional; F::conv1d(x, weight, F::Conv1dFuncOptions().stride(1)); using torch::nn::functional::Conv2dFuncOptions = ConvFuncOptions\u003c2\u003e# ConvFuncOptions specialized for torch::nn::functional::conv2d. Example: namespace F = torch::nn::functional; F::conv2d(x, weight, F::Conv2dFuncOptions().stride(1)); using torch::nn::functional::Conv3dFuncOptions = ConvFuncOptions\u003c3\u003e# ConvFuncOptions specialized for torch::nn::functional::conv3d. Example: namespace F = torch::nn::functional; F::conv3d(x, weight, F::Conv3dFuncOptions().stride(1)); using torch::nn::functional::ConvTranspose1dFuncOptions = ConvTransposeFuncOptions\u003c1\u003e# ConvTransposeFuncOptions specialized for torch::nn::functional::conv_transpose1d. Example: namespace F = torch::nn::functional; F::conv_transpose1d(x, weight, F::ConvTranspose1dFuncOptions().stride(1)); using torch::nn::functional::ConvTranspose2dFuncOptions = ConvTransposeFuncOptions\u003c2\u003e# ConvTransposeFuncOptions specialized for torch::nn::functional::conv_transpose2d. Example: namespace F = torch::nn::functional; F::conv_transpose2d(x, weight, F::ConvTranspose2dFuncOptions().stride(1)); using torch::nn::functional::ConvTranspose3dFuncOptions = ConvTransposeFuncOptions\u003c3\u003e# ConvTransposeFuncOptions specialized for torch::nn::functional::conv_transpose3d. Example: namespace F = torch::nn::functional; F::conv_transpose3d(x, weight, F::ConvTranspose3dFuncOptions().stride(1)); Pooling Options: using torch::nn::functional::AvgPool1dFuncOptions = AvgPool1dOptions# Options for torch::nn::functional::avg_pool1d. See the documentation for torch::nn::AvgPool1dOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::avg_pool1d(x, F::AvgPool1dFuncOptions(3).stride(2)); using torch::nn::functional::AvgPool2dFuncOptions = AvgPool2dOptions# Options for torch::nn::functional::avg_pool2d. See the documentation for torch::nn::AvgPool2dOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::avg_pool2d(x, F::AvgPool2dFuncOptions(3).stride(2)); using torch::nn::functional::AvgPool3dFuncOptions = AvgPool3dOptions# Options for torch::nn::functional::avg_pool3d. See the documentation for torch::nn::AvgPool3dOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::avg_pool3d(x, F::AvgPool3dFuncOptions(3).stride(2)); using torch::nn::functional::MaxPool1dFuncOptions = MaxPool1dOptions# Options for torch::nn::functional::max_pool1d and torch::nn::functional::max_pool1d_with_indices. Example: namespace F = torch::nn::functional; F::max_pool1d(x, F::MaxPool1dFuncOptions(3).stride(2)); using torch::nn::functional::MaxPool2dFuncOptions = MaxPool2dOptions# Options for torch::nn::functional::max_pool2d and torch::nn::functional::max_pool2d_with_indices. Example: namespace F = torch::nn::functional; F::max_pool2d(x, F::MaxPool2dFuncOptions(3).stride(2)); using torch::nn::functional::MaxPool3dFuncOptions = MaxPool3dOptions# Options for torch::nn::functional::max_pool3d and torch::nn::functional::max_pool3d_with_indices. Example: namespace F = torch::nn::functional; F::max_pool3d(x, F::MaxPool3dFuncOptions(3).stride(2)); using torch::nn::functional::AdaptiveMaxPool1dFuncOptions = AdaptiveMaxPool1dOptions# Options for torch::nn::functional::adaptive_max_pool1d and torch::nn::functional::adaptive_max_pool1d_with_indices Example: namespace F = torch::nn::functional; F::adaptive_max_pool1d(x, F::AdaptiveMaxPool1dFuncOptions(3)); using torch::nn::functional::AdaptiveMaxPool2dFuncOptions = AdaptiveMaxPool2dOptions# Options for torch::nn::functional::adaptive_max_pool2d and torch::nn::functional::adaptive_max_pool2d_with_indices Example: namespace F = torch::nn::functional; F::adaptive_max_pool2d(x, F::AdaptiveMaxPool2dFuncOptions(3)); using torch::nn::functional::AdaptiveMaxPool3dFuncOptions = AdaptiveMaxPool3dOptions# Options for torch::nn::functional::adaptive_max_pool3d and torch::nn::functional::adaptive_max_pool3d_with_indices Example: namespace F = torch::nn::functional; F::adaptive_max_pool3d(x, F::AdaptiveMaxPool3dFuncOptions(3)); using torch::nn::functional::AdaptiveAvgPool1dFuncOptions = AdaptiveAvgPool1dOptions# Options for torch::nn::functional::adaptive_avg_pool1d. See the documentation for torch::nn::AdaptiveAvgPool1dOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::adaptive_avg_pool1d(x, F::AdaptiveAvgPool1dFuncOptions(3)); using torch::nn::functional::AdaptiveAvgPool2dFuncOptions = AdaptiveAvgPool2dOptions# Options for torch::nn::functional::adaptive_avg_pool2d. See the documentation for torch::nn::AdaptiveAvgPool2dOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::adaptive_avg_pool2d(x, F::AdaptiveAvgPool2dFuncOptions(3)); using torch::nn::functional::AdaptiveAvgPool3dFuncOptions = AdaptiveAvgPool3dOptions# Options for torch::nn::functional::adaptive_avg_pool3d. See the documentation for torch::nn::AdaptiveAvgPool3dOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::adaptive_avg_pool3d(x, F::AdaptiveAvgPool3dFuncOptions(3)); Other Options: using torch::nn::functional::CosineSimilarityFuncOptions = CosineSimilarityOptions# Options for torch::nn::functional::cosine_similarity. See the documentation for torch::nn::CosineSimilarityOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::cosine_similarity(input1, input2, F::CosineSimilarityFuncOptions().dim(1)); using torch::nn::functional::PairwiseDistanceFuncOptions = PairwiseDistanceOptions# Options for torch::nn::functional::pairwise_distance. See the documentation for torch::nn::PairwiseDistanceOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::pairwise_distance(input1, input2, F::PairwiseDistanceFuncOptions().p(1)); using torch::nn::functional::Dropout2dFuncOptions = DropoutFuncOptions# Options for torch::nn::functional::dropout2d. Example: namespace F = torch::nn::functional; F::dropout2d(input, F::Dropout2dFuncOptions().p(0.5)); using torch::nn::functional::Dropout3dFuncOptions = DropoutFuncOptions# Options for torch::nn::functional::dropout3d. Example: namespace F = torch::nn::functional; F::dropout3d(input, F::Dropout3dFuncOptions().p(0.5)); using torch::nn::functional::L1LossFuncOptions = L1LossOptions# Options for torch::nn::functional::l1_loss. See the documentation for torch::nn::L1LossOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::l1_loss(input, target, F::L1LossFuncOptions(torch::kNone)); using torch::nn::functional::FoldFuncOptions = FoldOptions# Options for torch::nn::functional::fold. See the documentation for torch::nn::FoldOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::fold(input, F::FoldFuncOptions({3, 2}, {2, 2})); using torch::nn::functional::UnfoldFuncOptions = UnfoldOptions# Options for torch::nn::functional::unfold. See the documentation for torch::nn::UnfoldOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::unfold(input, F::UnfoldFuncOptions({2, 2}).padding(1).stride(2)); using torch::nn::functional::PixelShuffleFuncOptions = PixelShuffleOptions# Options for torch::nn::functional::pixel_shuffle. See the documentation for torch::nn::PixelShuffleOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::pixel_shuffle(x, F::PixelShuffleFuncOptions(2)); using torch::nn::functional::PixelUnshuffleFuncOptions = PixelUnshuffleOptions# Options for torch::nn::functional::pixel_unshuffle. See the documentation for torch::nn::PixelUnshuffleOptions class to learn what arguments are supported. Example: namespace F = torch::nn::functional; F::pixel_unshuffle(x, F::PixelUnshuffleFuncOptions(2));",
       "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/functional.html"
       },
       "datePublished": "2023-01-01T00:00:00Z",
       "dateModified": "2023-01-01T00:00:00Z"
     }
 

docsearch:languageen
llm:site-typedocumentation
llm:frameworkPyTorch
llm:descriptionFunctional API in PyTorch C++ — torch::nn::functional stateless operations for neural networks.
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/functional.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/functional.html#functional-api
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#activation-functions
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
ELUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional14ELUFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional3eluE6TensorRK14ELUFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.eluhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.elu
torch::nn::functional::ELUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a61af459ab6d7a84b020e0a3ab12ec2b2
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
SELUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15SELUFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4seluE6TensorRK15SELUFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.seluhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.selu
torch::nn::functional::SELUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a5e3900dfa871a06c119cc7b34b16883b
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
HardshrinkFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional21HardshrinkFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10hardshrinkERK6TensorRK21HardshrinkFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.hardshrinkhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.hardshrink
torch::nn::functional::HardshrinkFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ad590f86fb1ba14a29cbf08aebf75692d
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
HardtanhFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19HardtanhFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional8hardtanhE6TensorRK19HardtanhFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.hardtanhhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.hardtanh
torch::nn::functional::HardtanhFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ae00130ccc031ee527478102a6deaae22
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
LeakyReLUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20LeakyReLUFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10leaky_reluE6TensorRK20LeakyReLUFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.leaky_reluhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.leaky_relu
torch::nn::functional::LeakyReLUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1adbb5f6bc1b77bb45758ecb3c245b1eeb
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/functional.html#_CPPv4N5torch2nn10functional10logsigmoidERK6Tensor
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
GLUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional14GLUFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional3gluERK6TensorRK14GLUFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.gluhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.glu
torch::nn::functional::GLUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a8318be8a4bab733f842c57a3d54ee3dc
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
GELUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15GELUFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4geluERK6TensorRK15GELUFuncOptions
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/functional.html#_CPPv4N5torch2nn10functional4siluERK6Tensor
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/functional.html#_CPPv4N5torch2nn10functional4mishERK6Tensor
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional5preluERK6TensorRK6Tensor
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
ReLUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15ReLUFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4reluE6TensorRK15ReLUFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.reluhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.relu
torch::nn::functional::ReLUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a2b78a5f2ff5f7ac423dc44668d4e2d77
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
ReLU6FuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional16ReLU6FuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional5relu6E6TensorRK16ReLU6FuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.relu6https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.relu6
torch::nn::functional::ReLU6FuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a98777e1591bd240b926382ee47c229b2
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/functional.html#_CPPv4N5torch2nn10functional5rreluE6TensorRK16RReLUFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.rreluhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.rrelu
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
CELUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15CELUFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4celuE6TensorRK15CELUFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.celuhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.celu
torch::nn::functional::CELUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a5611a453d65adc860056dea4217ea61d
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
SoftplusFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19SoftplusFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional8softplusERK6TensorRK19SoftplusFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softplushttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softplus
torch::nn::functional::SoftplusFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a15db0509efd475768c09425efba6d2ce
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
SoftshrinkFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional21SoftshrinkFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10softshrinkERK6TensorRK21SoftshrinkFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softshrinkhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softshrink
torch::nn::functional::SoftshrinkFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1af63ffb082efd3a25e321ec0874a2a393
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/functional.html#_CPPv4N5torch2nn10functional8softsignERK6Tensor
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/functional.html#_CPPv4N5torch2nn10functional10tanhshrinkERK6Tensor
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
ThresholdFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20ThresholdFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional9thresholdE6TensorRK20ThresholdFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.thresholdhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.threshold
torch::nn::functional::ThresholdFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1aa49db61db8696357f0d91b4769392216
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/functional.html#_CPPv4N5torch2nn10functional7softmaxERK6TensorRK18SoftmaxFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softmaxhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softmax
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/functional.html#_CPPv4N5torch2nn10functional7softminERK6TensorRK18SoftminFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softminhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.softmin
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/functional.html#_CPPv4N5torch2nn10functional11log_softmaxERK6TensorRK21LogSoftmaxFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.log_softmaxhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.log_softmax
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/functional.html#_CPPv4N5torch2nn10functional14gumbel_softmaxERK6TensorRK24GumbelSoftmaxFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.gumbel_softmaxhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.gumbel_softmax
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#convolution-functions
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Conv1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17Conv1dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional6conv1dERK6TensorRK6TensorRK17Conv1dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv1dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv1d
torch::nn::functional::Conv1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1af3590bb75abe7c105dd556d536a99f19
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Conv2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17Conv2dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional6conv2dERK6TensorRK6TensorRK17Conv2dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv2dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv2d
torch::nn::functional::Conv2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ac7f8a5d09b8286e01eeb1c84cbe2b7f1
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Conv3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17Conv3dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional6conv3dERK6TensorRK6TensorRK17Conv3dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv3dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv3d
torch::nn::functional::Conv3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a7c0ef8b5ee0a1929d4b2fc9657b6919e
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
ConvTranspose1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional26ConvTranspose1dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional16conv_transpose1dERK6TensorRK6TensorRK26ConvTranspose1dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv_transpose1dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv_transpose1d
torch::nn::functional::ConvTranspose1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ac453b06b1a90dc7582104b63c1df22a9
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
ConvTranspose2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional26ConvTranspose2dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional16conv_transpose2dERK6TensorRK6TensorRK26ConvTranspose2dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv_transpose2dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv_transpose2d
torch::nn::functional::ConvTranspose2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a396ee68df79b5044effcd82cb87bf9d5
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
ConvTranspose3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional26ConvTranspose3dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional16conv_transpose3dERK6TensorRK6TensorRK26ConvTranspose3dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv_transpose3dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.conv_transpose3d
torch::nn::functional::ConvTranspose3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a6a42bc0c61700d49d151b357ef3979d8
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#pooling-functions
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
AvgPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20AvgPool1dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10avg_pool1dERK6TensorRK20AvgPool1dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.avg_pool1dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.avg_pool1d
torch::nn::functional::AvgPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1acf05334d2c1e4c6d1834784c5bac4868
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
AvgPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20AvgPool2dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10avg_pool2dERK6TensorRK20AvgPool2dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.avg_pool2dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.avg_pool2d
torch::nn::functional::AvgPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1af2ff663f1a4d3a4f9ef86d3fd138af9b
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
AvgPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20AvgPool3dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10avg_pool3dERK6TensorRK20AvgPool3dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.avg_pool3dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.avg_pool3d
torch::nn::functional::AvgPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ab7c3f90e57f5f96f49fbb0c92946bd75
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
MaxPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool1dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10max_pool1dERK6TensorRK20MaxPool1dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_pool1dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_pool1d
torch::nn::functional::MaxPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a0fa17e7c271ed097b307d6b1bdafe83a
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
MaxPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool2dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10max_pool2dERK6TensorRK20MaxPool2dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_pool2dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_pool2d
torch::nn::functional::MaxPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a40a8afab639ce9754f754dc58b2b72d7
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
MaxPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool3dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10max_pool3dERK6TensorRK20MaxPool3dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_pool3dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_pool3d
torch::nn::functional::MaxPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ace443b91c29a090e4da1aa18ed123ae5
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
MaxPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool1dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional23max_pool1d_with_indicesERK6TensorRK20MaxPool1dFuncOptions
torch::nn::functional::MaxPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a0fa17e7c271ed097b307d6b1bdafe83a
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
MaxPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool2dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional23max_pool2d_with_indicesERK6TensorRK20MaxPool2dFuncOptions
torch::nn::functional::MaxPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a40a8afab639ce9754f754dc58b2b72d7
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
MaxPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool3dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional23max_pool3d_with_indicesERK6TensorRK20MaxPool3dFuncOptions
torch::nn::functional::MaxPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ace443b91c29a090e4da1aa18ed123ae5
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
AdaptiveMaxPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveMaxPool1dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_max_pool1dERK6TensorRK28AdaptiveMaxPool1dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_max_pool1dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_max_pool1d
torch::nn::functional::AdaptiveMaxPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1aa18646e3cd361617311b0c1d1743aa78
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
AdaptiveMaxPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveMaxPool2dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_max_pool2dERK6TensorRK28AdaptiveMaxPool2dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_max_pool2dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_max_pool2d
torch::nn::functional::AdaptiveMaxPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ae97e48ae246e7578409991817720b1c9
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
AdaptiveMaxPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveMaxPool3dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_max_pool3dERK6TensorRK28AdaptiveMaxPool3dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_max_pool3dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_max_pool3d
torch::nn::functional::AdaptiveMaxPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ab481ba120a0ade9c201f2ba1aa5c3b56
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
AdaptiveAvgPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveAvgPool1dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_avg_pool1dERK6TensorRK28AdaptiveAvgPool1dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_avg_pool1dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_avg_pool1d
torch::nn::functional::AdaptiveAvgPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a07b51ee2d76d7ab61a88b9698ef0206a
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
AdaptiveAvgPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveAvgPool2dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_avg_pool2dERK6TensorRK28AdaptiveAvgPool2dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_avg_pool2dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_avg_pool2d
torch::nn::functional::AdaptiveAvgPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a23f36f4c2ffc73d75e4dbfe028c4d9bf
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
AdaptiveAvgPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveAvgPool3dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_avg_pool3dERK6TensorRK28AdaptiveAvgPool3dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_avg_pool3dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.adaptive_avg_pool3d
torch::nn::functional::AdaptiveAvgPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ae6696bbecb6c16ebdf427e5b4d9d0992
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional12max_unpool1dERK6TensorRK6TensorRK22MaxUnpool1dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_unpool1dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_unpool1d
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional12max_unpool2dERK6TensorRK6TensorRK22MaxUnpool2dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_unpool2dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_unpool2d
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional12max_unpool3dERK6TensorRK6TensorRK22MaxUnpool3dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_unpool3dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.max_unpool3d
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/functional.html#_CPPv4N5torch2nn10functional21fractional_max_pool2dERK6TensorRK30FractionalMaxPool2dFuncOptions
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/functional.html#_CPPv4N5torch2nn10functional21fractional_max_pool3dERK6TensorRK30FractionalMaxPool3dFuncOptions
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/functional.html#_CPPv4N5torch2nn10functional9lp_pool1dERK6TensorRK19LPPool1dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.lp_pool1dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.lp_pool1d
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/functional.html#_CPPv4N5torch2nn10functional9lp_pool2dERK6TensorRK19LPPool2dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.lp_pool2dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.lp_pool2d
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/functional.html#_CPPv4N5torch2nn10functional9lp_pool3dERK6TensorRK19LPPool3dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.lp_pool3dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.lp_pool3d
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#linear-functions
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional6linearERK6TensorRK6TensorRK6Tensor
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional8bilinearERK6TensorRK6TensorRK6TensorRK6Tensor
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#dropout-functions
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/functional.html#_CPPv4N5torch2nn10functional7dropoutE6TensorRK18DropoutFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.dropouthttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.dropout
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Dropout2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20Dropout2dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional9dropout2dE6TensorRK20Dropout2dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.dropout2dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.dropout2d
torch::nn::functional::Dropout2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a52a6eaf5da8ed72ad38fa52dcc06ca1c
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Dropout3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20Dropout3dFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional9dropout3dE6TensorRK20Dropout3dFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.dropout3dhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.dropout3d
torch::nn::functional::Dropout3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1aeab00b582e3fcb86073eefbaf08176e2
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/functional.html#_CPPv4N5torch2nn10functional13alpha_dropoutE6TensorRK23AlphaDropoutFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.alpha_dropouthttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.alpha_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/functional.html#_CPPv4N5torch2nn10functional21feature_alpha_dropoutE6TensorRK30FeatureAlphaDropoutFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.feature_alpha_dropouthttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.feature_alpha_dropout
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#embedding-functions
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/functional.html#_CPPv4N5torch2nn10functional7one_hotERK6Tensor7int64_t
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional9embeddingERK6TensorRK6TensorRK20EmbeddingFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.embeddinghttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.embedding
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional13embedding_bagERK6TensorRK6TensorRK23EmbeddingBagFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.embedding_baghttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.embedding_bag
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#normalization-functions
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional10batch_normERK6TensorRK6TensorRK6TensorRK20BatchNormFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.batch_normhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.batch_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/functional.html#_CPPv4N5torch2nn10functional13instance_normERK6TensorRK23InstanceNormFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.instance_normhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.instance_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/functional.html#_CPPv4N5torch2nn10functional10layer_normERK6TensorRK20LayerNormFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.layer_normhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.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/functional.html#_CPPv4N5torch2nn10functional10group_normERK6TensorRK20GroupNormFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.group_normhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.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/functional.html#_CPPv4N5torch2nn10functional19local_response_normERK6TensorRK28LocalResponseNormFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.local_response_normhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.local_response_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/functional.html#_CPPv4N5torch2nn10functional9normalizeERK6Tensor20NormalizeFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.normalizehttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.normalize
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#loss-functions
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
L1LossFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17L1LossFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional7l1_lossERK6TensorRK6TensorRK17L1LossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.l1_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.l1_loss
torch::nn::functional::L1LossFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a0fbdb4f64a37511a4d97451ab220c9e9
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional8mse_lossERK6TensorRK6TensorRK18MSELossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.mse_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.mse_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional20binary_cross_entropyERK6TensorRK6TensorRK29BinaryCrossEntropyFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.binary_cross_entropyhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.binary_cross_entropy
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional32binary_cross_entropy_with_logitsERK6TensorRK6TensorRK39BinaryCrossEntropyWithLogitsFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.binary_cross_entropy_with_logitshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.binary_cross_entropy_with_logits
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional13cross_entropyERK6TensorRK6TensorRK23CrossEntropyFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.cross_entropyhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.cross_entropy
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional8nll_lossERK6TensorRK6TensorRK18NLLLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.nll_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.nll_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional6kl_divERK6TensorRK6TensorRK16KLDivFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.kl_divhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.kl_div
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional14smooth_l1_lossERK6TensorRK6TensorRK23SmoothL1LossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.smooth_l1_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.smooth_l1_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional10huber_lossERK6TensorRK6TensorRK20HuberLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.huber_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.huber_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional20hinge_embedding_lossERK6TensorRK6TensorRK29HingeEmbeddingLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.hinge_embedding_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.hinge_embedding_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional17multi_margin_lossERK6TensorRK6TensorRK26MultiMarginLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.multi_margin_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.multi_margin_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional21cosine_embedding_lossERK6TensorRK6TensorRK6TensorRK30CosineEmbeddingLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.cosine_embedding_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.cosine_embedding_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional19margin_ranking_lossERK6TensorRK6TensorRK6TensorRK28MarginRankingLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.margin_ranking_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.margin_ranking_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional22multilabel_margin_lossERK6TensorRK6TensorRK31MultilabelMarginLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.multilabel_margin_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.multilabel_margin_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional16soft_margin_lossERK6TensorRK6TensorRK25SoftMarginLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.soft_margin_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.soft_margin_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional27multilabel_soft_margin_lossERK6TensorRK6TensorRK35MultilabelSoftMarginLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.multilabel_soft_margin_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.multilabel_soft_margin_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional19triplet_margin_lossERK6TensorRK6TensorRK6TensorRK28TripletMarginLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.triplet_margin_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.triplet_margin_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional33triplet_margin_with_distance_lossERK6TensorRK6TensorRK6TensorRK40TripletMarginWithDistanceLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.triplet_margin_with_distance_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.triplet_margin_with_distance_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional8ctc_lossERK6TensorRK6TensorRK6TensorRK6TensorRK18CTCLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.ctc_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.ctc_loss
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional16poisson_nll_lossERK6TensorRK6TensorRK25PoissonNLLLossFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.poisson_nll_losshttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.poisson_nll_loss
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#distance-functions
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
CosineSimilarityFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional27CosineSimilarityFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17cosine_similarityERK6TensorRK6TensorRK27CosineSimilarityFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.cosine_similarityhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.cosine_similarity
torch::nn::functional::CosineSimilarityFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a25dfb2ae0533019b3178ae754edb2dbf
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
PairwiseDistanceFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional27PairwiseDistanceFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17pairwise_distanceERK6TensorRK6TensorRK27PairwiseDistanceFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.pairwise_distancehttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.pairwise_distance
torch::nn::functional::PairwiseDistanceFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ad3bf613817e84005a257aab91bdab889
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/functional.html#_CPPv4N5torch2nn10functional5pdistERK6Tensord
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#vision-functions
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/functional.html#_CPPv4N5torch2nn10functional11interpolateERK6TensorRK22InterpolateFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.interpolatehttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.interpolate
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/functional.html#_CPPv4N5torch2nn10functional11affine_gridERK6TensorRK11IntArrayRefb
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
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/functional.html#_CPPv4N5torch2nn10functional11grid_sampleERK6TensorRK6TensorRK21GridSampleFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.grid_samplehttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.grid_sample
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/functional.html#_CPPv4N5torch2nn10functional3padERK6TensorRK14PadFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.padhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.pad
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
PixelShuffleFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional23PixelShuffleFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional13pixel_shuffleERK6TensorRK23PixelShuffleFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.pixel_shufflehttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.pixel_shuffle
torch::nn::functional::PixelShuffleFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1af65b38e4868148e182e54bc2b85e3c5e
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
PixelUnshuffleFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional25PixelUnshuffleFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15pixel_unshuffleERK6TensorRK25PixelUnshuffleFuncOptions
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#fold-unfold
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
FoldFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15FoldFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4foldERK6TensorRK15FoldFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.foldhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.fold
torch::nn::functional::FoldFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a0f9b5507e86c56196ecb3de5b285fdba
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
Tensorhttps://docs.pytorch.org/cppdocs/api/aten/tensor.html#_CPPv46Tensorv
UnfoldFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17UnfoldFuncOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional6unfoldERK6TensorRK17UnfoldFuncOptions
https://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.unfoldhttps://pytorch.org/docs/main/nn.functional.html#torch.nn.functional.unfold
torch::nn::functional::UnfoldFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a1d6bf464f6c074bd254d73a5634a3037
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#functional-options-structs
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional14ELUFuncOptionsE
torch::nn::functional::eluhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a5844cb5ffab0a5e3b09c78d5985288f3
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15SELUFuncOptionsE
torch::nn::functional::seluhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ade39f64652eaecb5cbeac3e2b9cce1e2
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional14GLUFuncOptionsE
torch::nn::functional::gluhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a789cc6940523640f299df85a3dc5a0fd
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15GELUFuncOptionsE
torch::nn::functional::geluhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a19d2cba226e69c7e59cd6f1e9c3492ab
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional21HardshrinkFuncOptionsE
torch::nn::functional::hardshrinkhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a03930fe24cf9e9ea15ffa581dd0fc1bb
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19HardtanhFuncOptionsE
torch::nn::functional::hardtanhhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1ad74120097a1e0ac0f25e92179d3794d7
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20LeakyReLUFuncOptionsE
torch::nn::functional::leaky_reluhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a78ff53230a1287227a9ce0576a4968df
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15ReLUFuncOptionsE
torch::nn::functional::reluhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a8988aaaa31c183a9bd1d7a50cea0b95a
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional16ReLU6FuncOptionsE
torch::nn::functional::relu6https://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a8a2d5a78a7991c5dec9226e363617a1c
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15CELUFuncOptionsE
torch::nn::functional::celuhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a1f7785c4fdbcd91a2d30d3df170a8ba1
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19SoftplusFuncOptionsE
torch::nn::functional::softplushttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a2ed3b13bed41c0ea148ce50a4678f667
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional21SoftshrinkFuncOptionsE
torch::nn::functional::softshrinkhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a346ce796e5020a3464aac8d5eedc3585
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20ThresholdFuncOptionsE
torch::nn::functional::thresholdhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1aaa4248d3e9ceeaf7bf19f838f1caccd0
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17Conv1dFuncOptionsE
torch::nn::functional::conv1dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1aeb0387979da5959204b29088e90af4d0
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17Conv2dFuncOptionsE
torch::nn::functional::conv2dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a7725e0c18ec1d46399e731945da2a822
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17Conv3dFuncOptionsE
torch::nn::functional::conv3dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a304b90a3b5b374147ad29edaec801c7e
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional26ConvTranspose1dFuncOptionsE
torch::nn::functional::conv_transpose1dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a71e7903cecf4a7fddaa51f6a5084265f
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional26ConvTranspose2dFuncOptionsE
torch::nn::functional::conv_transpose2dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1acef1ff6558f81456fc821ad1a63688b9
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional26ConvTranspose3dFuncOptionsE
torch::nn::functional::conv_transpose3dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a1f485af1157e939e06c7e8e3c4218c70
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20AvgPool1dFuncOptionsE
torch::nn::functional::avg_pool1dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a69b6999550d37177213b93e391574bf2
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20AvgPool2dFuncOptionsE
torch::nn::functional::avg_pool2dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a5cc7feb12f14589412d1e4a2812d1f75
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20AvgPool3dFuncOptionsE
torch::nn::functional::avg_pool3dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a43e3c900cb1e4008676926f5da2889dc
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool1dFuncOptionsE
torch::nn::functional::max_pool1dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a07e9a113b2bc764ab168fdec17d75a05
torch::nn::functional::max_pool1d_with_indiceshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a25e1db8a8b33b966cdf5f6c68d3b0b5f
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool2dFuncOptionsE
torch::nn::functional::max_pool2dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a7650feb2a6f2430479ba5c6f537a641b
torch::nn::functional::max_pool2d_with_indiceshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a312c870582822171c427b5713f9c9bf9
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool3dFuncOptionsE
torch::nn::functional::max_pool3dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a65b588e7e4d753747ff4c77a96c0746b
torch::nn::functional::max_pool3d_with_indiceshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a3fee57db9a7ca3969e7d6299a0b1a660
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveMaxPool1dFuncOptionsE
torch::nn::functional::adaptive_max_pool1dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a8e3c530eb5c8d02860c02ded46eff197
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveMaxPool2dFuncOptionsE
torch::nn::functional::adaptive_max_pool2dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a4e26579eb59ffb0d39161f9379f5dbc0
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveMaxPool3dFuncOptionsE
torch::nn::functional::adaptive_max_pool3dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a70ad76511cce60e10b7a607891c60a86
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveAvgPool1dFuncOptionsE
torch::nn::functional::adaptive_avg_pool1dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1acb47b72fa566c9909eee5c67dba87cb7
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveAvgPool2dFuncOptionsE
torch::nn::functional::adaptive_avg_pool2dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a49cdf5fcca79bf985616e734f8d898ce
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveAvgPool3dFuncOptionsE
torch::nn::functional::adaptive_avg_pool3dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1afad71bcb3e16cf801084d5954a481dbe
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional27CosineSimilarityFuncOptionsE
torch::nn::functional::cosine_similarityhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a9dc0b9d03d17ea4a679a3ccd42dc6e66
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional27PairwiseDistanceFuncOptionsE
torch::nn::functional::pairwise_distancehttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a902d9a614b0a9e7a1073212da99ec5da
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20Dropout2dFuncOptionsE
torch::nn::functional::dropout2dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a4d24d61aaacbdabb0048136f854c40dc
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20Dropout3dFuncOptionsE
torch::nn::functional::dropout3dhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a4beec5a0d813a04cf7f627cec611d807
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17L1LossFuncOptionsE
torch::nn::functional::l1_losshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a8dd1234ab2cbd3dec29442215d386285
FoldOptionshttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4N5torch2nn11FoldOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15FoldFuncOptionsE
torch::nn::functional::foldhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a5b1d2bace86064e3f7bf9303a1af68e1
torch::nn::FoldOptionshttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchstructtorch_1_1nn_1_1_fold_options
UnfoldOptionshttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4N5torch2nn13UnfoldOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17UnfoldFuncOptionsE
torch::nn::functional::unfoldhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1aeeb260cc4a1858d5ba61d51d48374289
torch::nn::UnfoldOptionshttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchstructtorch_1_1nn_1_1_unfold_options
PixelShuffleOptionshttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4N5torch2nn19PixelShuffleOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional23PixelShuffleFuncOptionsE
torch::nn::functional::pixel_shufflehttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a05398b8d6bee5a1efb4fd70bde75050f
torch::nn::PixelShuffleOptionshttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchstructtorch_1_1nn_1_1_pixel_shuffle_options
PixelUnshuffleOptionshttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#_CPPv4N5torch2nn21PixelUnshuffleOptionsE
#https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional25PixelUnshuffleFuncOptionsE
torch::nn::functional::pixel_unshufflehttps://docs.pytorch.org/cppdocs/api/nn/functional.html#PyTorchnamespacetorch_1_1nn_1_1functional_1a88105bdd02e17ee699b7196f4c00baf7
torch::nn::PixelUnshuffleOptionshttps://docs.pytorch.org/cppdocs/api/nn/utilities.html#PyTorchstructtorch_1_1nn_1_1_pixel_unshuffle_options
previous Loss Functions https://docs.pytorch.org/cppdocs/api/nn/loss.html
next Utilities https://docs.pytorch.org/cppdocs/api/nn/utilities.html
PyData Sphinx Themehttps://pydata-sphinx-theme.readthedocs.io/en/stable/index.html
previous Loss Functions https://docs.pytorch.org/cppdocs/api/nn/loss.html
next Utilities https://docs.pytorch.org/cppdocs/api/nn/utilities.html
Activation Functionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#activation-functions
elu()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional3eluE6TensorRK14ELUFuncOptions
selu()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4seluE6TensorRK15SELUFuncOptions
hardshrink()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10hardshrinkERK6TensorRK21HardshrinkFuncOptions
hardtanh()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional8hardtanhE6TensorRK19HardtanhFuncOptions
leaky_relu()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10leaky_reluE6TensorRK20LeakyReLUFuncOptions
logsigmoid()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10logsigmoidERK6Tensor
glu()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional3gluERK6TensorRK14GLUFuncOptions
gelu()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4geluERK6TensorRK15GELUFuncOptions
silu()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4siluERK6Tensor
mish()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4mishERK6Tensor
prelu()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional5preluERK6TensorRK6Tensor
relu()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4reluE6TensorRK15ReLUFuncOptions
relu6()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional5relu6E6TensorRK16ReLU6FuncOptions
rrelu()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional5rreluE6TensorRK16RReLUFuncOptions
celu()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4celuE6TensorRK15CELUFuncOptions
softplus()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional8softplusERK6TensorRK19SoftplusFuncOptions
softshrink()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10softshrinkERK6TensorRK21SoftshrinkFuncOptions
softsign()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional8softsignERK6Tensor
tanhshrink()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10tanhshrinkERK6Tensor
threshold()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional9thresholdE6TensorRK20ThresholdFuncOptions
softmax()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional7softmaxERK6TensorRK18SoftmaxFuncOptions
softmin()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional7softminERK6TensorRK18SoftminFuncOptions
log_softmax()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional11log_softmaxERK6TensorRK21LogSoftmaxFuncOptions
gumbel_softmax()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional14gumbel_softmaxERK6TensorRK24GumbelSoftmaxFuncOptions
Convolution Functionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#convolution-functions
conv1d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional6conv1dERK6TensorRK6TensorRK17Conv1dFuncOptions
conv2d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional6conv2dERK6TensorRK6TensorRK17Conv2dFuncOptions
conv3d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional6conv3dERK6TensorRK6TensorRK17Conv3dFuncOptions
conv_transpose1d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional16conv_transpose1dERK6TensorRK6TensorRK26ConvTranspose1dFuncOptions
conv_transpose2d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional16conv_transpose2dERK6TensorRK6TensorRK26ConvTranspose2dFuncOptions
conv_transpose3d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional16conv_transpose3dERK6TensorRK6TensorRK26ConvTranspose3dFuncOptions
Pooling Functionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#pooling-functions
avg_pool1d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10avg_pool1dERK6TensorRK20AvgPool1dFuncOptions
avg_pool2d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10avg_pool2dERK6TensorRK20AvgPool2dFuncOptions
avg_pool3d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10avg_pool3dERK6TensorRK20AvgPool3dFuncOptions
max_pool1d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10max_pool1dERK6TensorRK20MaxPool1dFuncOptions
max_pool2d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10max_pool2dERK6TensorRK20MaxPool2dFuncOptions
max_pool3d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10max_pool3dERK6TensorRK20MaxPool3dFuncOptions
max_pool1d_with_indices()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional23max_pool1d_with_indicesERK6TensorRK20MaxPool1dFuncOptions
max_pool2d_with_indices()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional23max_pool2d_with_indicesERK6TensorRK20MaxPool2dFuncOptions
max_pool3d_with_indices()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional23max_pool3d_with_indicesERK6TensorRK20MaxPool3dFuncOptions
adaptive_max_pool1d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_max_pool1dERK6TensorRK28AdaptiveMaxPool1dFuncOptions
adaptive_max_pool2d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_max_pool2dERK6TensorRK28AdaptiveMaxPool2dFuncOptions
adaptive_max_pool3d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_max_pool3dERK6TensorRK28AdaptiveMaxPool3dFuncOptions
adaptive_avg_pool1d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_avg_pool1dERK6TensorRK28AdaptiveAvgPool1dFuncOptions
adaptive_avg_pool2d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_avg_pool2dERK6TensorRK28AdaptiveAvgPool2dFuncOptions
adaptive_avg_pool3d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19adaptive_avg_pool3dERK6TensorRK28AdaptiveAvgPool3dFuncOptions
max_unpool1d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional12max_unpool1dERK6TensorRK6TensorRK22MaxUnpool1dFuncOptions
max_unpool2d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional12max_unpool2dERK6TensorRK6TensorRK22MaxUnpool2dFuncOptions
max_unpool3d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional12max_unpool3dERK6TensorRK6TensorRK22MaxUnpool3dFuncOptions
fractional_max_pool2d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional21fractional_max_pool2dERK6TensorRK30FractionalMaxPool2dFuncOptions
fractional_max_pool3d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional21fractional_max_pool3dERK6TensorRK30FractionalMaxPool3dFuncOptions
lp_pool1d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional9lp_pool1dERK6TensorRK19LPPool1dFuncOptions
lp_pool2d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional9lp_pool2dERK6TensorRK19LPPool2dFuncOptions
lp_pool3d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional9lp_pool3dERK6TensorRK19LPPool3dFuncOptions
Linear Functionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#linear-functions
linear()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional6linearERK6TensorRK6TensorRK6Tensor
bilinear()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional8bilinearERK6TensorRK6TensorRK6TensorRK6Tensor
Dropout Functionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#dropout-functions
dropout()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional7dropoutE6TensorRK18DropoutFuncOptions
dropout2d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional9dropout2dE6TensorRK20Dropout2dFuncOptions
dropout3d()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional9dropout3dE6TensorRK20Dropout3dFuncOptions
alpha_dropout()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional13alpha_dropoutE6TensorRK23AlphaDropoutFuncOptions
feature_alpha_dropout()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional21feature_alpha_dropoutE6TensorRK30FeatureAlphaDropoutFuncOptions
Embedding Functionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#embedding-functions
one_hot()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional7one_hotERK6Tensor7int64_t
embedding()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional9embeddingERK6TensorRK6TensorRK20EmbeddingFuncOptions
embedding_bag()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional13embedding_bagERK6TensorRK6TensorRK23EmbeddingBagFuncOptions
Normalization Functionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#normalization-functions
batch_norm()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10batch_normERK6TensorRK6TensorRK6TensorRK20BatchNormFuncOptions
instance_norm()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional13instance_normERK6TensorRK23InstanceNormFuncOptions
layer_norm()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10layer_normERK6TensorRK20LayerNormFuncOptions
group_norm()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10group_normERK6TensorRK20GroupNormFuncOptions
local_response_norm()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19local_response_normERK6TensorRK28LocalResponseNormFuncOptions
normalize()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional9normalizeERK6Tensor20NormalizeFuncOptions
Loss Functionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#loss-functions
l1_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional7l1_lossERK6TensorRK6TensorRK17L1LossFuncOptions
mse_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional8mse_lossERK6TensorRK6TensorRK18MSELossFuncOptions
binary_cross_entropy()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20binary_cross_entropyERK6TensorRK6TensorRK29BinaryCrossEntropyFuncOptions
binary_cross_entropy_with_logits()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional32binary_cross_entropy_with_logitsERK6TensorRK6TensorRK39BinaryCrossEntropyWithLogitsFuncOptions
cross_entropy()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional13cross_entropyERK6TensorRK6TensorRK23CrossEntropyFuncOptions
nll_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional8nll_lossERK6TensorRK6TensorRK18NLLLossFuncOptions
kl_div()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional6kl_divERK6TensorRK6TensorRK16KLDivFuncOptions
smooth_l1_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional14smooth_l1_lossERK6TensorRK6TensorRK23SmoothL1LossFuncOptions
huber_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional10huber_lossERK6TensorRK6TensorRK20HuberLossFuncOptions
hinge_embedding_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20hinge_embedding_lossERK6TensorRK6TensorRK29HingeEmbeddingLossFuncOptions
multi_margin_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17multi_margin_lossERK6TensorRK6TensorRK26MultiMarginLossFuncOptions
cosine_embedding_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional21cosine_embedding_lossERK6TensorRK6TensorRK6TensorRK30CosineEmbeddingLossFuncOptions
margin_ranking_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19margin_ranking_lossERK6TensorRK6TensorRK6TensorRK28MarginRankingLossFuncOptions
multilabel_margin_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional22multilabel_margin_lossERK6TensorRK6TensorRK31MultilabelMarginLossFuncOptions
soft_margin_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional16soft_margin_lossERK6TensorRK6TensorRK25SoftMarginLossFuncOptions
multilabel_soft_margin_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional27multilabel_soft_margin_lossERK6TensorRK6TensorRK35MultilabelSoftMarginLossFuncOptions
triplet_margin_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19triplet_margin_lossERK6TensorRK6TensorRK6TensorRK28TripletMarginLossFuncOptions
triplet_margin_with_distance_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional33triplet_margin_with_distance_lossERK6TensorRK6TensorRK6TensorRK40TripletMarginWithDistanceLossFuncOptions
ctc_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional8ctc_lossERK6TensorRK6TensorRK6TensorRK6TensorRK18CTCLossFuncOptions
poisson_nll_loss()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional16poisson_nll_lossERK6TensorRK6TensorRK25PoissonNLLLossFuncOptions
Distance Functionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#distance-functions
cosine_similarity()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17cosine_similarityERK6TensorRK6TensorRK27CosineSimilarityFuncOptions
pairwise_distance()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17pairwise_distanceERK6TensorRK6TensorRK27PairwiseDistanceFuncOptions
pdist()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional5pdistERK6Tensord
Vision Functionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#vision-functions
interpolate()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional11interpolateERK6TensorRK22InterpolateFuncOptions
affine_grid()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional11affine_gridERK6TensorRK11IntArrayRefb
grid_sample()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional11grid_sampleERK6TensorRK6TensorRK21GridSampleFuncOptions
pad()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional3padERK6TensorRK14PadFuncOptions
pixel_shuffle()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional13pixel_shuffleERK6TensorRK23PixelShuffleFuncOptions
pixel_unshuffle()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15pixel_unshuffleERK6TensorRK25PixelUnshuffleFuncOptions
Fold/Unfoldhttps://docs.pytorch.org/cppdocs/api/nn/functional.html#fold-unfold
fold()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional4foldERK6TensorRK15FoldFuncOptions
unfold()https://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional6unfoldERK6TensorRK17UnfoldFuncOptions
Functional Options Structshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#functional-options-structs
ELUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional14ELUFuncOptionsE
SELUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15SELUFuncOptionsE
GLUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional14GLUFuncOptionsE
GELUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15GELUFuncOptionsE
HardshrinkFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional21HardshrinkFuncOptionsE
HardtanhFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19HardtanhFuncOptionsE
LeakyReLUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20LeakyReLUFuncOptionsE
ReLUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15ReLUFuncOptionsE
ReLU6FuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional16ReLU6FuncOptionsE
CELUFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15CELUFuncOptionsE
SoftplusFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional19SoftplusFuncOptionsE
SoftshrinkFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional21SoftshrinkFuncOptionsE
ThresholdFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20ThresholdFuncOptionsE
Conv1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17Conv1dFuncOptionsE
Conv2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17Conv2dFuncOptionsE
Conv3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17Conv3dFuncOptionsE
ConvTranspose1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional26ConvTranspose1dFuncOptionsE
ConvTranspose2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional26ConvTranspose2dFuncOptionsE
ConvTranspose3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional26ConvTranspose3dFuncOptionsE
AvgPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20AvgPool1dFuncOptionsE
AvgPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20AvgPool2dFuncOptionsE
AvgPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20AvgPool3dFuncOptionsE
MaxPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool1dFuncOptionsE
MaxPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool2dFuncOptionsE
MaxPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20MaxPool3dFuncOptionsE
AdaptiveMaxPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveMaxPool1dFuncOptionsE
AdaptiveMaxPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveMaxPool2dFuncOptionsE
AdaptiveMaxPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveMaxPool3dFuncOptionsE
AdaptiveAvgPool1dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveAvgPool1dFuncOptionsE
AdaptiveAvgPool2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveAvgPool2dFuncOptionsE
AdaptiveAvgPool3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional28AdaptiveAvgPool3dFuncOptionsE
CosineSimilarityFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional27CosineSimilarityFuncOptionsE
PairwiseDistanceFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional27PairwiseDistanceFuncOptionsE
Dropout2dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20Dropout2dFuncOptionsE
Dropout3dFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional20Dropout3dFuncOptionsE
L1LossFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17L1LossFuncOptionsE
FoldFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional15FoldFuncOptionsE
UnfoldFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional17UnfoldFuncOptionsE
PixelShuffleFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional23PixelShuffleFuncOptionsE
PixelUnshuffleFuncOptionshttps://docs.pytorch.org/cppdocs/api/nn/functional.html#_CPPv4N5torch2nn10functional25PixelUnshuffleFuncOptionsE
Show Source https://docs.pytorch.org/cppdocs/_sources/api/nn/functional.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.