Skip to content
New issue

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 #1424

Closed
1 task done
the-cat-crying opened this issue May 10, 2024 · 3 comments
Closed
1 task done

Supported GPU version is not #1424

the-cat-crying opened this issue May 10, 2024 · 3 comments
Labels
question Further information is requested

Comments

@the-cat-crying
Copy link

Search before asking

  • I have searched the Yolo Tracking issues and found no similar bug report.

Question

Supported GPU version is not

@the-cat-crying the-cat-crying added the question Further information is requested label May 10, 2024
@mikel-brostrom
Copy link
Owner

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 😄

@mikel-brostrom
Copy link
Owner

This should have now been fixed. As seen here in 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

@the-cat-crying
Copy link
Author

thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants