Minor output fixes

This commit is contained in:
AlexeyAB
2019-06-29 16:52:49 +03:00
parent 88cccfcad4
commit 7d4143332d
7 changed files with 13 additions and 9 deletions

View File

@ -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`

View File

@ -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);