This commit is contained in:
Glenn Jocher 2018-11-29 22:10:35 +01:00
parent bd649f241f
commit 35e445c5da
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 * 32) * 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())