mirror of https://github.com/WongKinYiu/yolov7.git
Unified output names (#283)
parent
5f7d38b12a
commit
6bacefff5c
|
@ -111,22 +111,22 @@ class RegisterNMS(object):
|
||||||
|
|
||||||
# NMS Outputs
|
# NMS Outputs
|
||||||
output_num_detections = gs.Variable(
|
output_num_detections = gs.Variable(
|
||||||
name="num_detections",
|
name="num_dets",
|
||||||
dtype=np.int32,
|
dtype=np.int32,
|
||||||
shape=[self.batch_size, 1],
|
shape=[self.batch_size, 1],
|
||||||
) # A scalar indicating the number of valid detections per batch image.
|
) # A scalar indicating the number of valid detections per batch image.
|
||||||
output_boxes = gs.Variable(
|
output_boxes = gs.Variable(
|
||||||
name="detection_boxes",
|
name="det_boxes",
|
||||||
dtype=dtype_output,
|
dtype=dtype_output,
|
||||||
shape=[self.batch_size, detections_per_img, 4],
|
shape=[self.batch_size, detections_per_img, 4],
|
||||||
)
|
)
|
||||||
output_scores = gs.Variable(
|
output_scores = gs.Variable(
|
||||||
name="detection_scores",
|
name="det_scores",
|
||||||
dtype=dtype_output,
|
dtype=dtype_output,
|
||||||
shape=[self.batch_size, detections_per_img],
|
shape=[self.batch_size, detections_per_img],
|
||||||
)
|
)
|
||||||
output_labels = gs.Variable(
|
output_labels = gs.Variable(
|
||||||
name="detection_classes",
|
name="det_classes",
|
||||||
dtype=np.int32,
|
dtype=np.int32,
|
||||||
shape=[self.batch_size, detections_per_img],
|
shape=[self.batch_size, detections_per_img],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue