From 5d749c79e9ad4053ad090475b6115d466a7258dc Mon Sep 17 00:00:00 2001 From: Rg Zhong <35895359+phonixer@users.noreply.github.com> Date: Mon, 30 Dec 2024 10:59:59 +0800 Subject: [PATCH] Update padding-and-strides.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 公式中不能使用中文“。”会导致渲染失败 --- chapter_convolutional-neural-networks/padding-and-strides.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter_convolutional-neural-networks/padding-and-strides.md b/chapter_convolutional-neural-networks/padding-and-strides.md index e078ebaaa..0f0030d16 100644 --- a/chapter_convolutional-neural-networks/padding-and-strides.md +++ b/chapter_convolutional-neural-networks/padding-and-strides.md @@ -23,7 +23,7 @@ $0\times0+0\times1+0\times2+0\times3=0$。 通常,如果我们添加$p_h$行填充(大约一半在顶部,一半在底部)和$p_w$列填充(左侧大约一半,右侧一半),则输出形状将为 -$$(n_h-k_h+p_h+1)\times(n_w-k_w+p_w+1)。$$ +$$(n_h-k_h+p_h+1)\times(n_w-k_w+p_w+1).$$ 这意味着输出的高度和宽度将分别增加$p_h$和$p_w$。