5.1.2的Conv2D中call的返回值有一点小问题
lingsongfeng opened this issue · 1 comments
lingsongfeng commented
原文中为return corr2d(inputs, self.w + self.b)
,而实际上应该是return corr2d(inputs, self.w) + self.b
TrickyGo commented
感谢您的指正!确实是我写错了,我马上改!
lingsongfeng opened this issue · 1 comments
原文中为return corr2d(inputs, self.w + self.b)
,而实际上应该是return corr2d(inputs, self.w) + self.b
感谢您的指正!确实是我写错了,我马上改!