deep-learning-from-scratch icon indicating copy to clipboard operation
deep-learning-from-scratch copied to clipboard

Source code from the book 【深度学习入门-基于Python的理论与实现】

Results 2 deep-learning-from-scratch issues
Sort by recently updated
recently updated
newest added

In this line , img[:, :, y:y_max:stride, x:x_max:stride] += col[:, :, y, x, :, :] why it is not img[:, :, y:y_max:stride, x:x_max:stride] = col[:, :, y, x, :, :]...