CNN图片分类基础

第1关:卷积操作

本关任务:本关的小目标是编写一个实现卷积操作的函数。

import numpy as np

test_kernel = np.array([[-1, -1, -1],
                        [-1, 9

你可能感兴趣的:(Educoder实训,python)