Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ classifiers = [
]
dependencies = [
"torch==2.7.0",
"torchvision==0.22.0",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Incompatible torchvision and torch version pairing

The torchvision version is being bumped to 0.24.1 while torch remains at 2.7.0. According to the PR description, TorchVision 0.24.1 is compatible with PyTorch 2.9.1, not 2.7.0. Each torchvision version is tightly coupled with a specific PyTorch version (0.22.x with torch 2.7.x, 0.24.x with torch 2.9.x). This mismatch will cause runtime compatibility issues.

Additional Locations (1)

Fix in Cursor Fix in Web

"torchvision==0.24.1",
"torchmetrics[image]==1.7.4",
"requests>=2.31.0",
"transformers",
Expand Down
Loading