2021-12-21 20:26:37 +03:00
# GroupConvolution {#openvino_docs_ops_convolution_GroupConvolution_1}
2020-06-19 14:39:57 +03:00
2023-04-28 08:47:50 +02:00
@sphinxdirective
2020-06-19 14:39:57 +03:00
**Versioned name**: *GroupConvolution-1*
2021-08-23 12:12:46 +02:00
**Category**: *Convolution*
2020-06-19 14:39:57 +03:00
2021-07-14 14:00:29 +02:00
**Short description**: Computes 1D, 2D or 3D GroupConvolution of input and kernel tensors.
2020-06-19 14:39:57 +03:00
2023-04-28 08:47:50 +02:00
**Detailed description**: Splits input into multiple groups, convolves them with group filters
as in regular convolution and concatenates the results. More thorough explanation can be found in
`ImageNet Classification with Deep Convolutional Neural Networks <https://proceedings.neurips.cc/paper/2012/file/c399862d3b9d6b76c8436e924a68c45b-Paper.pdf>` __
2020-06-19 14:39:57 +03:00
2021-07-14 14:00:29 +02:00
**Attributes**: The operation has the same attributes as a regular _Convolution_ . Number of groups is derived from the kernel shape.
2020-06-19 14:39:57 +03:00
* *strides*
2023-04-28 08:47:50 +02:00
* **Description**: *strides* is a distance (in pixels) to slide the filter on the feature map over the ``(z, y, x)` `
axes for 3D convolutions and ``(y, x)`` axes for 2D convolutions. For example, *strides* equal ``4,2,1` ` means sliding
the filter 4 pixel at a time over depth dimension, 2 over height dimension and 1 over width dimension.
2020-06-19 14:39:57 +03:00
* **Range of values**: positive integer numbers
2023-04-28 08:47:50 +02:00
* **Type**: ``int[]` `
2020-06-19 14:39:57 +03:00
* **Required**: *yes*
* *pads_begin*
2023-04-28 08:47:50 +02:00
* **Description**: *pads_begin* is a number of pixels to add to the beginning along each axis. For example,
*pads_begin* equal ``1,2` ` means adding 1 pixel to the top of the input and 2 to the left of the input.
2020-06-19 14:39:57 +03:00
* **Range of values**: positive integer numbers
2023-04-28 08:47:50 +02:00
* **Type**: ``int[]` `
2020-06-19 14:39:57 +03:00
* **Required**: *yes*
2021-07-14 14:00:29 +02:00
* **Note**: the attribute is ignored when *auto_pad* attribute is specified.
2020-06-19 14:39:57 +03:00
* *pads_end*
2023-04-28 08:47:50 +02:00
* **Description**: *pads_end* is a number of pixels to add to the ending along each axis. For example,
*pads_end* equal ``1,2` ` means adding 1 pixel to the bottom of the input and 2 to the right of the input.
2020-06-19 14:39:57 +03:00
* **Range of values**: positive integer numbers
2023-04-28 08:47:50 +02:00
* **Type**: ``int[]` `
2020-06-19 14:39:57 +03:00
* **Required**: *yes*
2021-07-14 14:00:29 +02:00
* **Note**: the attribute is ignored when *auto_pad* attribute is specified.
2020-06-19 14:39:57 +03:00
* *dilations*
2023-04-28 08:47:50 +02:00
* **Description**: *dilations* denotes the distance in width and height between elements (weights) in the filter.
For example, *dilation* equal ``1,1` ` means that all the elements in the filter are neighbors,
so it is the same as for the usual convolution. *dilation* equal ``2,2` ` means that all the elements in the
filter are matched not to adjacent elements in the input matrix, but to those that are adjacent with distance 1.
2020-06-19 14:39:57 +03:00
* **Range of values**: positive integer numbers
2023-04-28 08:47:50 +02:00
* **Type**: ``int[]` `
2020-06-19 14:39:57 +03:00
* **Required**: *yes*
* *auto_pad*
* **Description**: *auto_pad* how the padding is calculated. Possible values:
2023-04-28 08:47:50 +02:00
2021-02-03 14:07:01 +01:00
* *explicit* - use explicit padding values from *pads_begin* and *pads_end* .
* *same_upper* - the input is padded to match the output size. In case of odd padding value an extra padding is added at the end.
* *same_lower* - the input is padded to match the output size. In case of odd padding value an extra padding is added at the beginning.
2020-06-19 14:39:57 +03:00
* *valid* - do not use padding.
2023-04-28 08:47:50 +02:00
* **Type**: ``string` `
2021-02-03 14:07:01 +01:00
* **Default value**: explicit
2020-06-19 14:39:57 +03:00
* **Required**: *no*
* **Note**: *pads_begin* and *pads_end* attributes are ignored when *auto_pad* is specified.
**Inputs**:
2023-04-28 08:47:50 +02:00
* **1**: Input tensor of type *T* and rank 3, 4 or 5. Layout is ``[N, GROUPS * C_IN, Z, Y, X]` `
(number of batches, number of channels, spatial axes Z, Y, X). **Required.**
* **2**: Convolution kernel tensor of type *T* and rank 4, 5 or 6. Layout is ``[GROUPS, C_OUT, C_IN, Z, Y, X]` `
(number of groups, number of output channels, number of input channels, spatial axes Z, Y, X),
* **Note** Number of groups is derived from the shape of the kernel and not specified by any attribute.
* **Note**: Type of the convolution (1D, 2D or 3D) is derived from the rank of the input tensors and not specified by any attribute:
* 1D convolution (input tensors rank 3) means that there is only one spatial axis X
* 2D convolution (input tensors rank 4) means that there are two spatial axes Y, X
* 3D convolution (input tensors rank 5) means that there are three spatial axes Z, Y, X
2021-02-03 14:07:01 +01:00
**Outputs**:
2023-04-28 08:47:50 +02:00
* **1**: Output tensor of type *T* and rank 3, 4 or 5. Layout is ``[N, GROUPS * C_OUT, Z, Y, X]` `
(number of batches, number of output channels, spatial axes Z, Y, X).
2021-02-03 14:07:01 +01:00
**Types**:
2021-04-06 13:36:12 +02:00
* *T*: any numeric type.
2021-02-03 14:07:01 +01:00
2021-07-14 14:00:29 +02:00
**Example**:
2023-04-28 08:47:50 +02:00
2021-02-03 14:07:01 +01:00
1D GroupConvolution
2023-04-28 08:47:50 +02:00
.. code-block:: cpp
< layer type = "GroupConvolution" . . . >
< data dilations = "1" pads_begin = "2" pads_end = "2" strides = "1" auto_pad = "explicit" / >
< input >
< port id = "0" >
< dim > 1< / dim >
< dim > 12< / dim >
< dim > 224< / dim >
< / port >
< port id = "1" >
< dim > 4< / dim >
< dim > 1< / dim >
< dim > 3< / dim >
< dim > 5< / dim >
< / port >
< / input >
< output >
< port id = "2" precision = "FP32" >
< dim > 1< / dim >
< dim > 4< / dim >
< dim > 224< / dim >
< / port >
< / output >
2020-06-19 14:39:57 +03:00
2021-02-03 14:07:01 +01:00
2D GroupConvolution
2023-04-28 08:47:50 +02:00
.. code-block:: cpp
< layer type = "GroupConvolution" . . . >
< data dilations = "1,1" pads_begin = "2,2" pads_end = "2,2" strides = "1,1" auto_pad = "explicit" / >
< input >
< port id = "0" >
< dim > 1< / dim >
< dim > 12< / dim >
< dim > 224< / dim >
< dim > 224< / dim >
< / port >
< port id = "1" >
< dim > 4< / dim >
< dim > 1< / dim >
< dim > 3< / dim >
< dim > 5< / dim >
< dim > 5< / dim >
< / port >
< / input >
< output >
< port id = "2" precision = "FP32" >
< dim > 1< / dim >
< dim > 4< / dim >
< dim > 224< / dim >
< dim > 224< / dim >
< / port >
< / output >
2021-02-03 14:07:01 +01:00
3D GroupConvolution
2023-04-28 08:47:50 +02:00
.. code-block:: cpp
< layer type = "GroupConvolution" . . . >
< data dilations = "1,1,1" pads_begin = "2,2,2" pads_end = "2,2,2" strides = "1,1,1" auto_pad = "explicit" / >
< input >
< port id = "0" >
< dim > 1< / dim >
< dim > 12< / dim >
< dim > 224< / dim >
< dim > 224< / dim >
< dim > 224< / dim >
< / port >
< port id = "1" >
< dim > 4< / dim >
< dim > 1< / dim >
< dim > 3< / dim >
< dim > 5< / dim >
< dim > 5< / dim >
< dim > 5< / dim >
< / port >
< / input >
< output >
< port id = "2" precision = "FP32" >
< dim > 1< / dim >
< dim > 4< / dim >
< dim > 224< / dim >
< dim > 224< / dim >
< dim > 224< / dim >
< / port >
< / output >
@endsphinxdirective