From 96fbe9c626403a03da82ab22fda5d521391004cb Mon Sep 17 00:00:00 2001 From: Ross Girshick <ross.girshick@gmail.com> Date: Fri, 6 Mar 2015 11:11:52 -0800 Subject: [PATCH] fix incorrect comment --- finetuning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/finetuning.py b/finetuning.py index b7a83c5..47f5663 100644 --- a/finetuning.py +++ b/finetuning.py @@ -46,7 +46,7 @@ def get_minibatch(roidb): def _get_bbox_regression_labels(bbox_target_data, num_classes): # Return (N, K * 4, 1, 1) blob of regression targets - # Return (N, K * 4, 1, 1) blob of Euclidean loss weights + # Return (N, K * 4, 1, 1) blob of loss weights clss = bbox_target_data[:, 0] bbox_targets = np.zeros((clss.size, 4 * num_classes), dtype=np.float32) bbox_loss_weights = np.zeros(bbox_targets.shape, dtype=np.float32) -- GitLab