Skip to content

Commit

Permalink
Update requirements.txt to ultralytics 8.0.145 (#11920)
Browse files Browse the repository at this point in the history
  • Loading branch information
glenn-jocher committed Jul 30, 2023
1 parent acdf73b commit d43d876
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ thop>=0.1.1 # FLOPs computation
torch>=1.7.0 # see https://pytorch.org/get-started/locally (recommended)
torchvision>=0.8.1
tqdm>=4.64.0
ultralytics>=8.0.111
ultralytics>=8.0.145
# protobuf<=3.20.1 # https://github.com/ultralytics/yolov5/issues/8012

# Logging ---------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def notebook_init(verbose=True):
import os
import shutil

from ultralytics.yolo.utils.checks import check_requirements
from ultralytics.utils.checks import check_requirements

from utils.general import check_font, is_colab
from utils.torch_utils import select_device # imports
Expand Down
2 changes: 1 addition & 1 deletion utils/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import torch
import torchvision
import yaml
from ultralytics.yolo.utils.checks import check_requirements
from ultralytics.utils.checks import check_requirements

from utils import TryExcept, emojis
from utils.downloads import curl_download, gsutil_getsize
Expand Down

0 comments on commit d43d876

Please sign in to comment.