내 매개 변수로 인해 tensorflow maxpooling이 왜 발생하는지 이해할 수 없습니다. ksize=2
및 strides=2
내가 모두 padding SAME
및 padding VALID
Tensorflow maxpooling 이해
input : (?, 28, 28, 1)
conv2d_out : (?, 28, 28, 32)
maxpool2d_out : (?, 14, 14, 32)
그러나 다음과 같은 출력을 얻을으로 maxpool을 수행
나는 ksize=3
과 strides=1
와 maxpool을 perfrom 할 때, 나는 다음과 같은 출력을 얻을 :
input : (?, 28, 28, 1)
conv2d_out : (?, 28, 28, 32)
maxpool2d_out : (?, 28, 28, 32) PADDING SAME
maxpool2d_out : (?, 26, 26, 32) PADDING VALID
을 사용하여 ksize=2
및 strides=2
을 사용하는 maxpool 출력 maxpool2d_out : (?, 28, 28, 32)
패딩과 함께 최대 풀링이 작동하는 방법에 대해 놓친 것이 있습니까? 당신은 padding='SAME'
을 사용하고
**CODE**==
python_
코드를 공유하십시오. – nessuno
http://codepad.org/IwxshYr1 –