Some bug fixes, random stuff

This commit is contained in:
Joseph Redmon
2015-09-01 11:21:01 -07:00
parent 9d42f49a24
commit 8bcdee8658
30 changed files with 629 additions and 205 deletions

View File

@ -35,6 +35,7 @@ typedef struct {
int n;
int groups;
int size;
int side;
int stride;
int pad;
int crop_width;
@ -60,6 +61,7 @@ typedef struct {
float probability;
float scale;
int *indexes;
float *rand;
float *cost;
@ -101,4 +103,6 @@ typedef struct {
#endif
} layer;
void free_layer(layer);
#endif