updates
This commit is contained in:
parent
2cf31ab7bc
commit
d30e4eea37
|
@ -734,7 +734,7 @@ def coco_single_class_labels(path='../coco/labels/train2014/', label_class=43):
|
||||||
shutil.copyfile(src=img_file, dst='new/images/' + Path(file).name.replace('txt', 'jpg')) # copy images
|
shutil.copyfile(src=img_file, dst='new/images/' + Path(file).name.replace('txt', 'jpg')) # copy images
|
||||||
|
|
||||||
|
|
||||||
def kmean_anchors(path='data/coco64.txt', n=9, img_size=(288, 640)): # from utils.utils import *; kmean_anchors()
|
def kmean_anchors(path='../coco/train2017.txt', n=12, img_size=(320, 640)): # from utils.utils import *; kmean_anchors()
|
||||||
# Produces a list of target kmeans suitable for use in *.cfg files
|
# Produces a list of target kmeans suitable for use in *.cfg files
|
||||||
from utils.datasets import LoadImagesAndLabels
|
from utils.datasets import LoadImagesAndLabels
|
||||||
from scipy import cluster
|
from scipy import cluster
|
||||||
|
@ -762,12 +762,14 @@ def kmean_anchors(path='data/coco64.txt', n=9, img_size=(288, 640)): # from uti
|
||||||
|
|
||||||
# Measure IoUs
|
# Measure IoUs
|
||||||
iou = wh_iou(torch.Tensor(wh), torch.Tensor(k))
|
iou = wh_iou(torch.Tensor(wh), torch.Tensor(k))
|
||||||
biou = iou.max(1)[0] # closest anchor IoU
|
max_iou = iou.max(1)[0] # best IoU
|
||||||
print('Best Possible Recall (BPR): %.3f' % (biou > 0.225).float().mean()) # BPR (best possible recall)
|
min_iou = iou.min(1)[0] # worst IoU
|
||||||
|
print('Best Possible Recall (BPR): %.3f' % (max_iou > 0.225).float().mean()) # BPR (best possible recall)
|
||||||
|
print('Mean anchors over threshold: %.3f' % ((iou > 0.225).float().mean() * n)) # BPR (best possible recall)
|
||||||
|
|
||||||
# Print
|
# Print
|
||||||
print('kmeans anchors (n=%g, img_size=%s, IoU=%.2f/%.2f/%.2f-min/mean/best): ' %
|
print('kmeans anchors (n=%g, img_size=%s, IoU=%.2f/%.2f/%.2f-min/mean/best): ' %
|
||||||
(n, img_size, biou.min(), iou.mean(), biou.mean()), end='')
|
(n, img_size, min_iou.mean(), iou.mean(), max_iou.mean()), end='')
|
||||||
for i, x in enumerate(k):
|
for i, x in enumerate(k):
|
||||||
print('%i,%i' % (round(x[0]), round(x[1])), end=', ' if i < len(k) - 1 else '\n') # use in *.cfg
|
print('%i,%i' % (round(x[0]), round(x[1])), end=', ' if i < len(k) - 1 else '\n') # use in *.cfg
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue