-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloss.py
More file actions
94 lines (73 loc) · 2.99 KB
/
Copy pathloss.py
File metadata and controls
94 lines (73 loc) · 2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import torch
import torch.nn as nn
from torch.nn.modules import loss
from utils import intersection_over_union
class YoloLoss(nn.Module):
def __init__(self, S=7, B=2, C=20):
super(YoloLoss, self).__init__()
self.mse = nn.MSELoss(reduction="sum")
self.S = S
self.B = B
self.C = C
self.lambda_noobj = 0.5
self.lambda_coord = 5
def forward(self, predictions, targets):
predictions = predictions.reshape(-1, self.S, self.S, self.C + self.B*2)
iou_b1 = intersection_over_union(predictions[..., 21:25], targets[..., 21:25])
iou_b2 = intersection_over_union(predictions[..., 26:30], targets[..., 21:25])
ious = torch.cat([iou_b1.unsqueeze(0), iou_b2.unsqueeze(0)], dim=0)
iou_maxes, best_box = torch.max(ious, dim=0)
exists_box = targets[..., 20].unsqueeze(3) # indentity of object i
# ===========================
# FOR BOX COORDINATES #
# ===========================
box_predictions = exists_box * (
(
best_box * predictions[..., 26:30] + (1 - best_box) * predictions[..., 21:25]
)
)
box_targets = exists_box * targets[..., 21:25]
box_predictions[..., 2:4] = torch.sign(box_predictions[..., 2, 4]) * torch.sqrt(
torch.abs(box_predictions[..., 2:4] + 1e-6)
)
# (N, S, S, 25)
box_targets[..., 2:4] = torch.sqrt(box_targets[..., 2:4])
box_loss = self.mse(
torch.flatten(box_predictions, end_dim=-2),
torch.flatten(box_targets, end_dim=-2)
)
# =======================
# FOR OBJECT LOSS #
# =======================
pred_box = (
best_box * predictions[..., 25:26] + (1 - best_box) * predictions[..., 20:21]
)
object_loss = self.mse(
torch.flatten(exists_box * pred_box),
torch.flatten(exists_box * targets[..., 20:21])
)
# ==========================
# FOR NO OBJECT LOSS #
# ==========================
no_object_loss = self.mse(
torch.flatten((1 - exists_box) * predictions[..., 20:21], start_dim=1),
torch.flatten((1 - exists_box) * targets[..., 20:21], start_dim=1)
)
no_object_loss += self.mse(
torch.flatten((1 - exists_box) * predictions[..., 25:26], start_dim=1),
torch.flatten((1 - exists_box) * targets[..., 20:21], start_dim=1)
)
# ======================
# FOR CLASS LOSS #
# ======================
class_loss = self.mse(
torch.flatten(exists_box * predictions[..., :20], end_dim=-2),
torch.flatten(exists_box * targets[..., :20], end_dim=-2)
)
loss = (
self.lambda_coord * box_loss # First two rows of the loss in the paper
+ object_loss
+ self.lambda_noobj * no_object_loss
+ class_loss
)
return loss