Skip to content

Commit 1027a95

Browse files
dzakharJaccovG
authored andcommitted
[Docs] Equation for pooling/convolution sizes has been fixed
1 parent d9865f0 commit 1027a95

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/documents/mli_kernels/convolution_grp.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ system of equations:
8787
8888
\hat{Hi} = {Hi}+padding\_top+padding\_bottom
8989
90-
{Wo}*{stride\_width} = \hat{Wi}-\hat{Wk}+1
90+
{Wo}*{stride\_width} = \hat{Wi}-\hat{Wk}+{stride\_width}
9191
92-
{Ho}*{stride\_height} = \hat{Hi}-\hat{Hk}+1
92+
{Ho}*{stride\_height} = \hat{Hi}-\hat{Hk}+{stride\_height}
9393
9494
\end{cases}
9595
..

doc/documents/mli_kernels/pooling_grp.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ system of equations:
6969
7070
\hat{Hi} = {Hi}+padding\_top+padding\_bottom
7171
72-
{Wo}*{stride\_width} = \hat{Wi}-{kernel\_width}+1
72+
{Wo}*{stride\_width} = \hat{Wi}-{kernel\_width}+{stride\_width}
7373
74-
{Ho}*{stride\_height} = \hat{Hi}-{kernel\_height}+1
74+
{Ho}*{stride\_height} = \hat{Hi}-{kernel\_height}+{stride\_height}
7575
7676
\end{cases}
7777
..

0 commit comments

Comments
 (0)