Class Conv
Represents a Conv
convolution layer, which applies a convolution filter to an input tensor.
Inherited Members
Namespace: Unity.Sentis.Layers
Assembly: solution.dll
Syntax
[Serializable]
public class Conv : FusedActivation
Constructors
Name | Description |
---|---|
Conv(string, string, string, int, int[], int[], int[], AutoPad, int[], FusableActivation) | Initializes and returns an instance of |
Conv(string, string, string, string, int, int[], int[], int[], AutoPad, int[], FusableActivation) | Initializes and returns an instance of |
Fields
Name | Description |
---|---|
autoPad | The auto padding mode of the convolution as an |
dilations | The dilation value of each spatial dimension of the filter. If this is |
group | The number of groups that input channels and output channels are divided into. |
kernelShape | The shape of the kernel as an integer array. |
pads | The lower and upper padding values for each spatial dimension of the filter, [pad_left, pad_right] for 1D, [pad_top, pad_bottom, pad_left, pad_right] for 2D, etc. If this is |
strides | The stride value for each spatial dimension of the filter. If this is |
Methods
Name | Description |
---|---|
Execute(Tensor[], ExecutionContext) | Executes the layer using the operations and variables from the If the layer has more than one output, output tensors are saved to variables. |
ToString() | Returns a string that represents the |