Difference between 'SAME' and 'VALID' padding

Difference between 'SAME' and 'VALID' padding 

 'SAME' padding 和 'VALID' padding 的区别

If you like ascii art:

In this example:

  • Input width = 13
  • Filter width = 6
  • Stride = 5

Notes:

  • "VALID" only ever drops the right-most columns (or bottom-most rows).
  • "SAME" tries to pad evenly left and right, but if the amount of columns to be added is odd, it will add the extra column to the right, as is the case in this example (the same logic applies vertically: there may be an extra row of zeros at the bottom).
 
 



猜你喜欢

转载自www.cnblogs.com/jins-note/p/10191796.html