Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in class documentation #1548

Merged
merged 4 commits into from
Oct 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class PPYoloEPostPredictionCallback(DetectionPostPredictionCallback):
def __init__(self, score_threshold: float, nms_threshold: float, nms_top_k: int, max_predictions: int, multi_label_per_box: bool = True):
"""
:param score_threshold: Predictions confidence threshold. Predictions with score lower than score_threshold will not participate in Top-K & NMS
:param iou: IoU threshold for NMS step.
:param nms_threshold: IoU threshold for NMS step.
:param nms_top_k: Number of predictions participating in NMS step
:param max_predictions: maximum number of boxes to return after NMS step
:param multi_label_per_box: controls whether to decode multiple labels per box.
Expand Down