Skip to contents

Applies a 3D convolution over an input image composed of several input planes.

Input and Output Channels

One input channel called "input" and one output channel called "output". For an explanation see PipeOpTorch.

State

The state is the value calculated by the public method $shapes_out().

Credit

Part of this documentation have been copied or adapted from the documentation of torch.

Internals

Calls torch::nn_conv3d() when trained. The paramter in_channels is inferred from the second dimension of the input tensor.

Parameters

  • out_channels :: integer(1)
    Number of channels produced by the convolution.

  • kernel_size :: integer()
    Size of the convolving kernel.

  • stride :: integer()
    Stride of the convolution. The default is 1.

  • padding :: integer()
    ‘dilation * (kernel_size - 1) - padding’ zero-padding will be added to both sides of the input. Default: 0.

  • groups :: integer()
    Number of blocked connections from input channels to output channels. Default: 1

  • bias :: logical(1)
    If ‘TRUE’, adds a learnable bias to the output. Default: ‘TRUE’.

  • dilation :: integer()
    Spacing between kernel elements. Default: 1.

  • padding_mode :: character(1)
    The padding mode. One of "zeros", "reflect", "replicate", or "circular". Default is "zeros".

Super classes

mlr3pipelines::PipeOp -> mlr3torch::PipeOpTorch -> mlr3torch::PipeOpTorchConv -> PipeOpTorchConv3D

Methods

Inherited methods


Method new()

Creates a new instance of this R6 class.

Usage

PipeOpTorchConv3D$new(id = "nn_conv3d", param_vals = list())

Arguments

id

(character(1))
Identifier of the resulting object.

param_vals

(list())
List of hyperparameter settings, overwriting the hyperparameter settings that would otherwise be set during construction.


Method clone()

The objects of this class are cloneable with this method.

Usage

PipeOpTorchConv3D$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

# Construct the PipeOp
pipeop = po("nn_conv3d", kernel_size = 10, out_channels = 1)
pipeop
#> PipeOp: <nn_conv3d> (not trained)
#> values: <out_channels=1, kernel_size=10>
#> Input channels <name [train type, predict type]>:
#>   input [ModelDescriptor,Task]
#> Output channels <name [train type, predict type]>:
#>   output [ModelDescriptor,Task]
# The available parameters
pipeop$param_set
#> <ParamSet(8)>
#>              id    class lower upper nlevels        default  value
#>          <char>   <char> <num> <num>   <num>         <list> <list>
#> 1: out_channels ParamInt     1   Inf     Inf <NoDefault[0]>      1
#> 2:  kernel_size ParamUty    NA    NA     Inf <NoDefault[0]>     10
#> 3:       stride ParamUty    NA    NA     Inf              1 [NULL]
#> 4:      padding ParamUty    NA    NA     Inf              0 [NULL]
#> 5:     dilation ParamUty    NA    NA     Inf              1 [NULL]
#> 6:       groups ParamInt     1   Inf     Inf              1 [NULL]
#> 7:         bias ParamLgl    NA    NA       2           TRUE [NULL]
#> 8: padding_mode ParamFct    NA    NA       4          zeros [NULL]