AveragePool - 1 vs 10#
Next section compares an older to a newer version of the same operator after both definition are converted into markdown text. Green means an addition to the newer version, red means a deletion. Anything else is unchanged.
- AveragePool1 → AveragePool10 +1 -15
AveragePool1 → AveragePool10
RENAMED
@@ -1 +1 @@
|
|
1
1
|
AveragePool consumes an input tensor X and applies average pooling across
|
2
2
|
the tensor according to kernel sizes, stride sizes, and pad lengths.
|
3
3
|
average pooling consisting of computing the average on all values of a
|
4
4
|
subset of the input tensor according to the kernel size and downsampling the
|
5
5
|
data into the output tensor Y for further processing. The output spatial shape will be following:
|
6
6
|
::
|
7
7
|
output_spatial_shape[i] = floor((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1)
|
8
|
-
|
9
|
-
or
|
10
|
-
::
|
11
|
-
|
12
|
-
output_spatial_shape[i] = ceil((input_spatial_shape[i] + pad_shape[i] - kernel_spatial_shape[i]) / strides_spatial_shape[i] + 1)
|
13
|
-
|
14
|
-
if ceil_mode is enabled
|
15
|
-
|
16
|
-
::
|
17
8
|
* pad_shape[i] is sum of pads along axis i
|
18
9
|
auto_pad is a DEPRECATED attribute. If you are using them currently, the output spatial shape will be following:
|
19
10
|
::
|
20
11
|
VALID: output_spatial_shape[i] = ceil((input_spatial_shape[i] - kernel_spatial_shape[i] + 1) / strides_spatial_shape[i])
|
21
12
|
SAME_UPPER or SAME_LOWER: output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides_spatial_shape[i])
|
22
13
|
And pad shape will be following if SAME_UPPER or SAME_LOWER:
|
23
14
|
::
|
24
15
|
pad_shape[i] = (output_spatial_shape[i] - 1) * strides_spatial_shape[i] + kernel_spatial_shape[i] - input_spatial_shape[i]
|
25
|
-
The output of each pooling window is divided by the number of elements
|
16
|
+
The output of each pooling window is divided by the number of elements exclude pad.
|
26
17
|
**Attributes**
|
27
18
|
* **auto_pad**:
|
28
19
|
auto_pad must be either NOTSET, SAME_UPPER, SAME_LOWER or VALID.
|
29
20
|
Where default value is NOTSET, which means explicit padding is used.
|
30
21
|
SAME_UPPER or SAME_LOWER mean pad the input so that the output
|
31
22
|
spatial size match the input.In case of odd number add the extra
|
32
23
|
padding at the end for SAME_UPPER and at the beginning for
|
33
24
|
SAME_LOWER. VALID mean no padding.
|
34
|
-
* **ceil_mode**:
|
35
|
-
Whether to use ceil or floor (default) to compute the output shape.
|
36
|
-
* **count_include_pad**:
|
37
|
-
Whether include pad pixels when calculating values for the edges.
|
38
|
-
Default is 0, doesn't count include pad.
|
39
25
|
* **kernel_shape** (required):
|
40
26
|
The size of the kernel along each axis.
|
41
27
|
* **pads**:
|
42
28
|
Padding for the beginning and ending along each spatial axis, it can
|
43
29
|
take any value greater than or equal to 0. The value represent the
|
44
30
|
number of pixels added to the beginning and end part of the
|
45
31
|
corresponding axis. pads format should be as follow [x1_begin,
|
46
32
|
x2_begin...x1_end, x2_end,...], where xi_begin the number of pixels
|
47
33
|
added at the beginning of axis i and xi_end, the number of pixels
|
48
34
|
added at the end of axis i. This attribute cannot be used
|
49
35
|
simultaneously with auto_pad attribute. If not present, the padding
|
50
36
|
defaults to 0 along start and end of each spatial axis.
|
51
37
|
* **strides**:
|
52
38
|
Stride along each spatial axis.
|
53
39
|
**Inputs**
|
54
40
|
* **X** (heterogeneous) - **T**:
|
55
41
|
Input data tensor from the previous operator; dimensions for image
|
56
42
|
case are (N x C x H x W), where N is the batch size, C is the number
|
57
43
|
of channels, and H and W are the height and the width of the data.
|
58
44
|
For non image case, the dimensions are in the form of (N x C x D1 x
|
59
45
|
D2 ... Dn), where N is the batch size. Optionally, if dimension
|
60
46
|
denotation is in effect, the operation expects the input data tensor
|
61
47
|
to arrive with the dimension denotation of [DATA_BATCH,
|
62
48
|
DATA_CHANNEL, DATA_FEATURE, DATA_FEATURE ...].
|
63
49
|
**Outputs**
|
64
50
|
* **Y** (heterogeneous) - **T**:
|
65
51
|
Output data tensor from average or max pooling across the input
|
66
52
|
tensor. Dimensions will vary based on various kernel, stride, and
|
67
53
|
pad sizes. Floor value of the dimension is used
|
68
54
|
**Type Constraints**
|
69
55
|
* **T** in (
|
70
56
|
tensor(double),
|
71
57
|
tensor(float),
|
72
58
|
tensor(float16)
|
73
59
|
):
|
74
60
|
Constrain input and output types to float tensors.
|