removed xy/wh loss reporting

This commit is contained in:
Glenn Jocher 2019-08-24 17:16:20 +02:00
parent 195adaea7d
commit 25a579e417
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ def train():
model_info(model, report='summary') # 'full' or 'summary'
nb = len(dataloader)
maps = np.zeros(nc) # mAP per class
results = (0, 0, 0, 0, 0, 0, 0, 0) # 'P', 'R', 'mAP', 'F1', 'val GIoU', 'val Objectness', 'val Classification'
results = (0, 0, 0, 0, 0, 0, 0) # 'P', 'R', 'mAP', 'F1', 'val GIoU', 'val Objectness', 'val Classification'
t0 = time.time()
for epoch in range(start_epoch, epochs): # epoch ------------------------------------------------------------------