Skip to content

Commit

Permalink
turn off Yolo progress bars in ultralytics examples (#789)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattseddon authored Jan 6, 2025
1 parent fc3ca99 commit 77ec9d9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions examples/computer_vision/ultralytics-bbox.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
import os

os.environ["YOLO_VERBOSE"] = "false"


from io import BytesIO

from PIL import Image
Expand Down
5 changes: 5 additions & 0 deletions examples/computer_vision/ultralytics-pose.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
import os

os.environ["YOLO_VERBOSE"] = "false"


from io import BytesIO

from PIL import Image
Expand Down
5 changes: 5 additions & 0 deletions examples/computer_vision/ultralytics-segment.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
import os

os.environ["YOLO_VERBOSE"] = "false"


from io import BytesIO

from PIL import Image
Expand Down

0 comments on commit 77ec9d9

Please sign in to comment.