@@ -15,7 +15,7 @@ outputs are then concatenated together to give the final output.
1515
1616For example, in a HWCN data layout, if the ``in `` feature map is :math: `(Hi, Wi, Ci)` and
1717the ``weights `` is :math: `(Hk, Wk, Cw, Co)`, the ``output `` feature map is :math: `(Ho, Wo, Co)`
18- tensor where :math: `Ci` is equalt to :math: `Cw * M` and :math: `Co` is multiple of :math: `M`.
18+ tensor where :math: `Ci` is equal to :math: `Cw * M` and :math: `Co` is multiple of :math: `M`.
1919Also spatial dimensions :math: `H*, W*` comply with the system of equations :eq: `eq_conv2d_shapes `.
2020
2121Depthwise convolution (see :ref: `conv_depthwise `) is an extreme case of group
@@ -157,16 +157,16 @@ Ensure that you satisfy the following general conditions before calling the func
157157
158158
159159- ``in ``, ``out ``, ``weights `` and ``bias `` tensors must be valid (see :ref: `mli_tnsr_struc `)
160- and satisfy data requirements of the used version of the kernel.
160+ and satisfy data requirements of the selected version of the kernel.
161161
162162- Shapes of ``in ``, ``out ``, ``weights `` and ``bias `` tensors must be compatible,
163163 which implies the following requirements:
164164
165165 - ``in `` and ``out `` are 3-dimensional tensors (rank==3). Dimensions meaning,
166- and order (layout) is aligned with the used version of kernel.
166+ and order (layout) is aligned with the specifc version of kernel.
167167
168168 - ``weights `` is a 4-dimensional tensor (rank==4). Dimensions meaning,
169- and order (layout) is aligned with the used kernel.
169+ and order (layout) is aligned with the specific kernel.
170170
171171 - ``bias `` must be a one-dimensional tensor (rank==1). Its length must be equal to
172172 :math: `Co` (output channels OR number of filters).
0 commit comments