Skip to content

Commit caf6eab

Browse files
author
Beat Buesser
committed
Update method name
Signed-off-by: Beat Buesser <[email protected]>
1 parent 6cc76a7 commit caf6eab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

art/estimators/object_tracking/pytorch_goturn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def _get_losses(
241241

242242
for i in range(x.shape[0]):
243243
x_i = inputs_t[i]
244-
y_pred = self.track(x=x_i, y_init=y_init[i])
244+
y_pred = self._track(x=x_i, y_init=y_init[i])
245245
gt_bb = labels_t[i]["boxes"]
246246
loss = torch.nn.L1Loss(size_average=False)(y_pred.float(), gt_bb.float())
247247
loss_list.append(loss)

0 commit comments

Comments
 (0)