You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
579 B
19 lines
579 B
2 years ago
|
import torch
|
||
|
|
||
|
from ultralytics import yolo
|
||
|
|
||
|
|
||
|
class ClassificationValidator(yolo.BaseValidator):
|
||
|
|
||
|
def init_metrics(self):
|
||
|
self.correct = torch.tensor([])
|
||
|
|
||
|
def update_metrics(self, preds, targets):
|
||
|
correct_in_batch = (targets[:, None] == preds).float()
|
||
|
self.correct = torch.cat((self.correct, correct_in_batch))
|
||
|
|
||
|
def get_stats(self):
|
||
|
acc = torch.stack((self.correct[:, 0], self.correct.max(1).values), dim=1) # (top1, top5) accuracy
|
||
|
top1, top5 = acc.mean(0).tolist()
|
||
|
return {"top1": top1, "top5": top5, "fitness": top5}
|