mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Fixed random values
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user