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
In save_preds method:
innofw/innofw/core/datamodules/lightning_datamodules/segmentation_hdf5_dm.py
Lines 98 to 108 in f0bfa99
The value of iterator i gets reset for each batch
i
Line 102 in f0bfa99
So images get same names and overwrite each batch. This i iterator should be outside the loop and get incremented after cv2.imwrite()
cv2.imwrite()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In save_preds method:
innofw/innofw/core/datamodules/lightning_datamodules/segmentation_hdf5_dm.py
Lines 98 to 108 in f0bfa99
The value of iterator
i
gets reset for each batchinnofw/innofw/core/datamodules/lightning_datamodules/segmentation_hdf5_dm.py
Line 102 in f0bfa99
So images get same names and overwrite each batch. This
i
iterator should be outside the loop and get incremented aftercv2.imwrite()
The text was updated successfully, but these errors were encountered: