"git@developer.sourcefind.cn:OpenDAS/fairscale.git" did not exist on "e14cca4421e7fc2c6b5553c705076c3fe01f9ff4"
Unverified Commit 1706921b authored by Vasilis Vryniotis's avatar Vasilis Vryniotis Committed by GitHub
Browse files

Change reshape to support empty batches. (#3031)

parent 585ce2c4
......@@ -40,7 +40,7 @@ def fastrcnn_loss(class_logits, box_regression, labels, regression_targets):
sampled_pos_inds_subset = torch.where(labels > 0)[0]
labels_pos = labels[sampled_pos_inds_subset]
N, num_classes = class_logits.shape
box_regression = box_regression.reshape(N, -1, 4)
box_regression = box_regression.reshape(N, box_regression.size(-1) // 4, 4)
box_loss = det_utils.smooth_l1_loss(
box_regression[sampled_pos_inds_subset, labels_pos],
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment