Closed hertschuh closed 2 weeks ago
Attention: Patch coverage is 62.50000%
with 3 lines
in your changes missing coverage. Please review.
Project coverage is 82.01%. Comparing base (
272bb90
) to head (812bd8f
). Report is 1 commits behind head on master.
Files with missing lines | Patch % | Lines |
---|---|---|
...s/src/trainers/data_adapters/py_dataset_adapter.py | 57.14% | 2 Missing and 1 partial :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
The issue was caused by the fact that the iterator was not fully consumed and
on_epoch_end
was not called.Added an exception to catch this situation in the future.
Added a unit test to test
model.fit()
with all the combinations of data adapters.