YOLOv5 PyTorch Hub models >> check_requirements() (#2588)
* YOLOv5 PyTorch Hub models >> check_requirements() Update YOLOv5 PyTorch Hub requirements.txt path to cache path. * Update hubconf.py
This commit is contained in:
parent
9f98201dd9
commit
8ace1b1b99
|
|
@ -15,7 +15,7 @@ from utils.google_utils import attempt_download
|
||||||
from utils.torch_utils import select_device
|
from utils.torch_utils import select_device
|
||||||
|
|
||||||
dependencies = ['torch', 'yaml']
|
dependencies = ['torch', 'yaml']
|
||||||
check_requirements(exclude=('pycocotools', 'thop'))
|
check_requirements(Path(__file__).parent / 'requirements.txt', exclude=('pycocotools', 'thop'))
|
||||||
set_logging()
|
set_logging()
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue