#separable

深度学习面试题25:分离卷积(separable卷积)

 举例分离卷积就是先在深度上分别卷积,然后再进行卷积,对应代码为:importtensorflowastf#[batch,in_height,in_width,in_channels]input=tf.reshape(tf.constant([2,5,3,3,8,2,6,1,1,2,5,4,7,9,2,3,-...