Fixed random values

This commit is contained in:
AlexeyAB
2019-02-28 16:55:30 +03:00
parent f37ea75b28
commit e82505d20e
9 changed files with 82 additions and 20 deletions

View File

@ -41,7 +41,7 @@ detection_layer make_detection_layer(int batch, int inputs, int n, int side, int
#endif
fprintf(stderr, "Detection Layer\n");
srand(0);
srand(time(0));
return l;
}