Skip to content
Snippets Groups Projects
Commit a6b2511a authored by Joseph Redmon's avatar Joseph Redmon
Browse files

idk

parent cf32e7e9
No related branches found
No related tags found
No related merge requests found
GPU=0
OPENCV=0
CUDNN=0
OPENCV=0
DEBUG=0
ARCH= --gpu-architecture=compute_52 --gpu-code=compute_52
......
[net]
batch=1
subdivisions=1
batch=64
subdivisions=4
height=448
width=448
channels=3
......
......@@ -89,7 +89,7 @@ void train_coco(char *cfgfile, char *weightfile)
avg_loss = avg_loss*.9 + loss*.1;
printf("%d: %f, %f avg, %f rate, %lf seconds, %d images\n", i, loss, avg_loss, get_current_rate(net), sec(clock()-time), i*imgs);
if(i%1000==0){
if(i%1000==0 || (i < 1000 && i%100 == 0)){
char buff[256];
sprintf(buff, "%s/%s_%d.weights", backup_directory, base, i);
save_weights(net, buff);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment