We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Supported GPU version is not
The text was updated successfully, but these errors were encountered:
You are right. I accidentally deleted the possibility of installing GPU compatible version of torch:
https://github.com/mikel-brostrom/yolo_tracking/blob/281a6be3fda055986a8f93a8c163d691e565e1ae/pyproject.toml#L42-L49
Fixing this. Thanks for pointing out 😄
Sorry, something went wrong.
This should have now been fixed. As seen here in pyproject.toml:
pyproject.toml
[tool.poetry.dependencies] python = "^3.8" filterpy = "^1.4.5" gdown = "^5.1.0" lapx = "^0.5.5" loguru = "^0.7.2" numpy = "1.24.4" pyyaml = "^6.0.1" regex = "^2024.0.0" yacs = "^0.1.8" scikit-learn = "^1.3.0" pandas = "^2.0.0" opencv-python = "^4.7.0" ftfy = "^6.1.3" gitpython = "^3.1.42" torch = [ {version = "^2.2.1", source="pypi", markers = "sys_platform == 'darwin'"}, {version = "^2.2.1+cu113", markers = "sys_platform == 'linux' or sys_platform == 'win32'"} ] torchvision = [ {version = "^0.17.1", source="pypi", markers = "sys_platform == 'darwin'"}, {version = "^0.17.1+cu113", markers = "sys_platform == 'linux' or sys_platform == 'win32'"} ]
CUDA enable versions of torch and torchvision are installed for linux and windows
CUDA
torch
torchvision
thanks!
No branches or pull requests
Search before asking
Question
Supported GPU version is not
The text was updated successfully, but these errors were encountered: