Fixing up maxpool layer

This commit is contained in:
Joseph Redmon
2014-10-16 15:17:23 -07:00
parent 7756cccb79
commit 9b3c7136f3
8 changed files with 173 additions and 71 deletions

View File

@ -8,7 +8,7 @@ typedef struct {
int h,w,c;
int stride;
int size;
int *max_indexes;
int *indexes;
float *delta;
float *output;
} maxpool_layer;