【最佳實踐】pytorch獲取top1和topk準確率

def eval(eval_dataloader,k = 5):
    with torch.no_grad():
        total = 0
        top1 = 0
        topk = 0
        for (test_imgs, test_labels) in eval_dataloader:
            test_labels = test_labels.to(device)

            preds = pred_net(linear_classify_net(backbone_net(test_imgs.to(device))))

            _,maxk = torch.topk(preds,k,dim=-1)
            total += test_labels.size(0)
            test_labels = test_labels.view(-1,1) # reshape labels from [n] to [n,1] to compare [n,k]

            top1 += (test_labels == maxk[:,0:1]).sum().item()
            topk += (test_labels == maxk).sum().item()

        print('Accuracy of the network on total {} test images: @top1={}%; @top{}={}%'.format(total,100 * top1 / total,k,100*topk/total))
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章