A neural gym for training deep learning models to carry out geoscientific image segmentation. Works best with labels generated using https://github.com/Doodleverse/dash_doodler
MIT License
45
stars
11
forks
source link
Unpack files from vstack if files not in subfolder #133
NOTE: For some reason the github file comparison shows a bunch of other changes, but the one I recommended above at line 313 is the only actual change.
When running
make_datasets.py
for the first time, I would get an error at:https://github.com/Doodleverse/segmentation_gym/blob/43edaaf445c21727d2fc4a7658521d655733c3c5/make_dataset.py#L340
because of the
vstack
operation after moving resized images into animages
subfolder at:https://github.com/Doodleverse/segmentation_gym/blob/43edaaf445c21727d2fc4a7658521d655733c3c5/make_dataset.py#L310-L311
Proposed Fix Unpack the vstack on line 313 with:
NOTE: For some reason the github file comparison shows a bunch of other changes, but the one I recommended above at line 313 is the only actual change.