Loading may or may not work. But probably.

This commit is contained in:
Joseph Redmon
2013-11-06 16:09:41 -08:00
parent 9b1774bd39
commit d7286c2732
14 changed files with 155 additions and 57 deletions

View File

@ -8,7 +8,7 @@ typedef struct {
image output;
} maxpool_layer;
maxpool_layer make_maxpool_layer(int h, int w, int c, int stride);
maxpool_layer *make_maxpool_layer(int h, int w, int c, int stride);
void run_maxpool_layer(const image input, const maxpool_layer layer);
#endif