NNPACK icon indicating copy to clipboard operation
NNPACK copied to clipboard

Would you please provide the avg pooling method?

Open abangdd opened this issue 8 years ago • 3 comments

since global avg pooling is essential to the Inception and ResNet architecture,will you implement avg pooling in the future? thank you

abangdd avatar May 18 '16 09:05 abangdd

In pooling-output.c this file seems to have a bug in line 51. Const size_t t = x * stride_height + j - padding_left; should be: Const size_t t = x * stride_width + j - padding_left;

liuyi999111 avatar Mar 17 '17 08:03 liuyi999111

@liuyi999111 The bug is fixed in 1a75285dab4b76eb3370b46bf985f3bde44d3964. Thank you for reporting.

Maratyszcza avatar Mar 18 '17 00:03 Maratyszcza

The mean pooling method looks easy on the basis of the max pooling method. I can help you implement these simple functions.

liuyi999111 avatar Mar 20 '17 03:03 liuyi999111