这个不是卷积中的步长stride

是另外一个含义,

stride = 每个像素所占字节数 * width

 

 

input stride为我们正常进行卷积时候设置的stride值,
output stride为该矩阵经过多次卷积pooling操作后,尺寸缩小的值,

又叫做输入图片的分辨率与输出图片的分辨率的比值;

例如:
input image为224 * 224,经过多次卷积pooling操作后,feature map为7*7,那么output stride为224/7 = 32.

output_stride = input_image_size/output_feature_size


参考:https://blog.csdn.net/weixin_39610043/article/details/87165968

相关文章:

  • 2021-05-05
  • 2021-08-04
  • 2022-01-10
  • 2021-04-20
  • 2021-06-21
  • 2021-12-26
猜你喜欢
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2022-12-23
  • 2021-11-09
  • 2021-05-25
相关资源
相似解决方案