Skip to content

Commit

Permalink
[Docs] Equation for pooling/convolution sizes has been fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
dzakhar authored and JaccovG committed Jul 27, 2022
1 parent d9865f0 commit 1027a95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/documents/mli_kernels/convolution_grp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ system of equations:
\hat{Hi} = {Hi}+padding\_top+padding\_bottom
{Wo}*{stride\_width} = \hat{Wi}-\hat{Wk}+1
{Wo}*{stride\_width} = \hat{Wi}-\hat{Wk}+{stride\_width}
{Ho}*{stride\_height} = \hat{Hi}-\hat{Hk}+1
{Ho}*{stride\_height} = \hat{Hi}-\hat{Hk}+{stride\_height}
\end{cases}
..
Expand Down
4 changes: 2 additions & 2 deletions doc/documents/mli_kernels/pooling_grp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ system of equations:
\hat{Hi} = {Hi}+padding\_top+padding\_bottom
{Wo}*{stride\_width} = \hat{Wi}-{kernel\_width}+1
{Wo}*{stride\_width} = \hat{Wi}-{kernel\_width}+{stride\_width}
{Ho}*{stride\_height} = \hat{Hi}-{kernel\_height}+1
{Ho}*{stride\_height} = \hat{Hi}-{kernel\_height}+{stride\_height}
\end{cases}
..
Expand Down

0 comments on commit 1027a95

Please sign in to comment.