本文就不从理论上详细介绍卷积了,程序员就要有程序员的亚子,所以我直接上代码介绍怎么用numpy实现卷积。...numpy实现卷积
基础定义
以CV中对图像卷积为例,图像卷积一般都是
输入:四维数组[B,H,W,C_in]
卷积核:四维数组[C_in,K,K,C_out]
输出:四维数组[B,H2,W2,C_out...,然后累计
result[channel_out, :, :] += numpy_conv(channel_data, filter[channel_out][channel_in...我们上完整代码
# -*- coding: utf-8 -*-
import numpy as np
def numpy_conv(inputs,filter,_result,padding="VALID...,然后累计
result[channel_out, :, :] += numpy_conv(channel_data, filter[channel_out][channel_in