-
Notifications
You must be signed in to change notification settings - Fork 45
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
Label TIF optimizations #3
Comments
Thanks for the feedback
Additionally, this might be a good point to switch the compression from lzw to deflate if space and transfer time is of concern. |
If reprocessing the dataset, it might also be sensible to map all labels up one (-1 -> 0, 0 ->1, 1 -> 2). Torch models can only work with labels |
I think this is something I would support, however this would likely mark a new version of the data in order to make keep the an older version that has values consistent as reported in the accompanying paper |
@moradology I have reproccessed the dataset (not in the bucket yet) to correctly flag
|
While attempting to use the labels described within this repo, it became apparent that a couple optimizations are advisable:
NoData
value of −32768. It is likely more appropriate for these tifs to have aNoData
value of -1, given the fact that this tracks the advertised semantics more closely and experience teaches that incorrectly setNoData
values are sometimes problematic for downstream processesThe text was updated successfully, but these errors were encountered: