IOU loss function

This commit is contained in:
Joseph Redmon
2015-04-24 10:27:50 -07:00
parent feabcc31de
commit 989ab8c38a
8 changed files with 272 additions and 62 deletions

View File

@ -36,5 +36,9 @@ float variance_array(float *a, int n);
float mag_array(float *a, int n);
float **one_hot_encode(float *a, int n, int k);
float sec(clock_t clocks);
typedef struct{
float x, y, w, h;
} box;
#endif