Information output when recognizing Yolo v8 #1349
-
How can I remove the output of recognition information to the console when using YOLOv8? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
what up buddy!! this will fix your problem `import logging
if works, mark me as answer ;) |
Beta Was this translation helpful? Give feedback.
-
Try set atribute verbose to False ("verbose=False") For example: |
Beta Was this translation helpful? Give feedback.
-
import ultralytics.utils as ultralytics_utils ultralytics_utils.LOGGER.setLevel(logging.WARN) |
Beta Was this translation helpful? Give feedback.
Try set atribute verbose to False ("verbose=False")
For example:
model.predict(source=SOURCE, verbose=False)