git push origin masterMerge branch 'yohann84L-fix_accuracy'

pull/828/head
Ross Wightman 3 years ago
commit acd6c687fd

@ -24,9 +24,9 @@ class AverageMeter:
def accuracy(output, target, topk=(1,)): def accuracy(output, target, topk=(1,)):
"""Computes the accuracy over the k top predictions for the specified values of k""" """Computes the accuracy over the k top predictions for the specified values of k"""
maxk = max(topk) maxk = min(max(topk), output.size()[1])
batch_size = target.size(0) batch_size = target.size(0)
_, pred = output.topk(maxk, 1, True, True) _, pred = output.topk(maxk, 1, True, True)
pred = pred.t() pred = pred.t()
correct = pred.eq(target.reshape(1, -1).expand_as(pred)) correct = pred.eq(target.reshape(1, -1).expand_as(pred))
return [correct[:k].reshape(-1).float().sum(0) * 100. / batch_size for k in topk] return [correct[:min(k, maxk)].reshape(-1).float().sum(0) * 100. / batch_size for k in topk]

Loading…
Cancel
Save