mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-23 21:44:22 +08:00
is_docker() fix for show=True
predict bug (#218)
Co-authored-by: Hardik Dava <39372750+hardikdava@users.noreply.github.com> Co-authored-by: Onuralp Sezer <thunderbirdtr@fedoraproject.org> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
7f9d7142c2
commit
88c9418087
@ -1,6 +1,6 @@
|
||||
# Ultralytics YOLO 🚀, GPL-3.0 license
|
||||
|
||||
__version__ = "8.0.2"
|
||||
__version__ = "8.0.3"
|
||||
|
||||
from ultralytics.hub import checks
|
||||
from ultralytics.yolo.engine.model import YOLO
|
||||
|
@ -124,9 +124,8 @@ class BasePredictor:
|
||||
|
||||
# Dataloader
|
||||
bs = 1 # batch_size
|
||||
if self.args.show:
|
||||
self.args.show = check_imshow(warn=True)
|
||||
if webcam:
|
||||
self.args.show = check_imshow(warn=True)
|
||||
self.dataset = LoadStreams(source,
|
||||
imgsz=imgsz,
|
||||
stride=stride,
|
||||
|
@ -119,8 +119,12 @@ def is_docker() -> bool:
|
||||
Returns:
|
||||
bool: True if the script is running inside a Docker container, False otherwise.
|
||||
"""
|
||||
with open('/proc/self/cgroup') as f:
|
||||
return 'docker' in f.read()
|
||||
file = Path('/proc/self/cgroup')
|
||||
if file.exists():
|
||||
with open(file) as f:
|
||||
return 'docker' in f.read()
|
||||
else:
|
||||
return False
|
||||
|
||||
|
||||
def is_git_directory() -> bool:
|
||||
|
Loading…
x
Reference in New Issue
Block a user