Skip to content

Commit 9a2b4a8

Browse files
tensorflower-gardenerTF Object Detection Team
authored and
TF Object Detection Team
committed
In TensorFlow Object Detection, fixed the order of the arguments when calling KeypointEstimationParams super class's __new__ method.
Specifically, the order for the last two elements 'gaussian_denom_ratio', 'argmax_postprocessing' are corrected. PiperOrigin-RevId: 733826226
1 parent a1c73cf commit 9a2b4a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: research/object_detection/meta_architectures/center_net_meta_arch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2384,7 +2384,7 @@ def __new__(cls,
23842384
offset_head_num_filters, offset_head_kernel_sizes,
23852385
regress_head_num_filters, regress_head_kernel_sizes,
23862386
score_distance_multiplier, std_dev_multiplier, rescoring_threshold,
2387-
argmax_postprocessing, gaussian_denom_ratio)
2387+
gaussian_denom_ratio, argmax_postprocessing)
23882388

23892389

23902390
class ObjectCenterParams(

0 commit comments

Comments
 (0)