This commit is contained in:
Glenn Jocher 2018-12-03 01:36:03 +01:00
parent 448a8f0f4b
commit f05934f2eb
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ class YOLOLayer(nn.Module):
# plt.hist(self.x)
# lconf = k * BCEWithLogitsLoss(pred_conf[mask], mask[mask].float())
lconf = (k * 16) * BCEWithLogitsLoss(pred_conf, mask.float())
lconf = (k * 64) * BCEWithLogitsLoss(pred_conf, mask.float())
lcls = (k / 4) * CrossEntropyLoss(pred_cls[mask], torch.argmax(tcls, 1))
# lcls = (k * 10) * BCEWithLogitsLoss(pred_cls[mask], tcls.float())