Understand how to fine-tune postprocessing parameters to control model output—filter predictions, apply suppression, and reduce clutter for more usable results.
Estimated read time: 4 minutes
Postprocessing turns raw model predictions into the final list you work with. The goal is simple: keep the predictions you care about, drop the rest, and do it in a way that’s stable and fast. This page focuses on runtime-adjustable knobs and why you’d change them.
Model family notes
Detection/instance tasks (e.g., object detection, instance segmentation): main knobs are output_confidence_threshold, output_nms_threshold, result caps, and output_class_set.
Classification: main knob is output_top_k (how many labels to return). NMS doesn’t apply.
Pose/keypoints: output_pose_threshold filters low‑confidence landmarks; other detection knobs may still apply if bounding boxes are present.
Compare postprocessing configurations using the tabs below.