This commit is contained in:
Joseph Redmon
2013-12-02 16:41:40 -08:00
parent 2db9fbef2b
commit 0d6bb5d44d
29 changed files with 836 additions and 214 deletions

View File

@ -13,6 +13,7 @@ typedef struct {
image get_maxpool_image(maxpool_layer layer);
maxpool_layer *make_maxpool_layer(int h, int w, int c, int stride);
void forward_maxpool_layer(const maxpool_layer layer, double *in);
void backward_maxpool_layer(const maxpool_layer layer, double *in, double *delta);
#endif