-
Notifications
You must be signed in to change notification settings - Fork 4
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
fix: index tensor on cpu #961
Conversation
A `torch.LongTensor` seems to always be created on the CPU.
The result is not great with 32 epochs, either.
1dfa9f1
to
58b0067
Compare
🦙 MegaLinter status: ✅ SUCCESS
See detailed report in MegaLinter reports |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #961 +/- ##
==========================================
- Coverage 94.42% 94.42% -0.01%
==========================================
Files 121 121
Lines 7462 7461 -1
==========================================
- Hits 7046 7045 -1
Misses 416 416 ☔ View full report in Codecov by Sentry. |
## [0.29.0](v0.28.1...v0.29.0) (2024-11-26) ### Features * remove `Image.__array__` ([#964](#964)) ([d2f59c9](d2f59c9)) * rename `count_row_if` to `count_rows_if` ([#960](#960)) ([f5d6324](f5d6324)) * rename `epoch_size` to `epoch_count` ([#962](#962)) ([fa62e9b](fa62e9b)) * rename `flip_vertically` and `flip_horizontally` methods ([#946](#946)) ([a3607d7](a3607d7)), closes [#945](#945) * rename `load_pretrained_model` to `from_pretrained_model` ([#957](#957)) ([5b32acc](5b32acc)) * rename `Row.get_value` to `Row.get_cell` ([#947](#947)) ([e77cb6c](e77cb6c)) ### Bug Fixes * avoid performance warning when accessing `column_count` ([#949](#949)) ([c24b6d5](c24b6d5)) * handle deprecations in third-party libraries ([#963](#963)) ([e10e6bb](e10e6bb)) * index tensor on cpu ([#961](#961)) ([afafd43](afafd43))
🎉 This PR is included in version 0.29.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Summary of Changes
The index tensor of an
ImageDataset
sometimes ended up on the CPU, instead of the default device, which led to runtime errors. This PR fixes this.