mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
Minor output fixes
This commit is contained in:
@ -1,5 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
#wget http://www.image-net.org/challenges/LSVRC/2012/nnoupb/ILSVRC2012_bbox_val_v3.tgz
|
||||
#other downloads: http://www.image-net.org/challenges/LSVRC/2012/nonpub-downloads
|
||||
#read: https://pjreddie.com/darknet/imagenet/
|
||||
|
||||
mkdir -p labelled
|
||||
wd=`pwd`
|
||||
|
||||
|
@ -552,7 +552,7 @@ convolutional_layer make_convolutional_layer(int batch, int steps, int h, int w,
|
||||
else if (l.xnor) fprintf(stderr, "convX ");
|
||||
else fprintf(stderr, "conv ");
|
||||
|
||||
if(groups > 1) fprintf(stderr, "%5d/%3d ", n, groups);
|
||||
if(groups > 1) fprintf(stderr, "%5d/%4d ", n, groups);
|
||||
else fprintf(stderr, "%5d ", n);
|
||||
|
||||
if(dilation > 1) fprintf(stderr, "%2d x%2d/%2d(%1d)", size, size, stride, dilation);
|
||||
|
Reference in New Issue
Block a user