Skip to content

Commit

Permalink
set conf = 0.1 for the yolov10s detection model
Browse files Browse the repository at this point in the history
  • Loading branch information
OneMagicKey committed Jun 16, 2024
1 parent 7ce9737 commit 109237c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,8 @@ def main():


model_list = [
ModelInfo("detection", "yolov10s", (640, 640), 10),
ModelInfo("segmentation", "yolov8s-seg", (640, 640), 8),
ModelInfo("detection", "yolov10s", (640, 640), conf=0.1, version=10),
ModelInfo("segmentation", "yolov8s-seg", (640, 640), version=8),
]

if __name__ == "__main__":
Expand Down

0 comments on commit 109237c

Please sign in to comment.