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

View File

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