-
Notifications
You must be signed in to change notification settings - Fork 1
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
Support dropout for training samples with min mean value below a configured threshold. #158
base: main
Are you sure you want to change the base?
Conversation
…igured threshold.
I think the original idea that Walt proposed was adding a IIRC there's a binary mask for the NODATA cells from the DEM. It should just be a mean over this mask, and then we can add another filter in |
Is this data already available in metastore? If not, does this mean-based approach still make sense to include as stopgap? With a sufficiently low threshold we shouldn't have any issue with over filtering. |
I'm not sure; let's wait for @waltaskew to chime in once he's back. But in general, I feel like it makes more sense to put this information in the metastore rather than computing a mean each time we load in a tensor. I'd rather avoid introducing temporary code, especially since this isn't really anything urgent. |
I'd prefer not to leave folks with stopgaps for anything that isn't urgent (e.g. some stopgaps allowing them to make predictions are okay since that's a core thing they need to be able to do.) USL will need to be able to implement these sorts of experiments on their own starting Thursday! So I think it's more valuable to leave them with good patterns & good documentation they can follow rather than leaving them with stopgaps which allow us to finish tasks before Thursday. Some options:
|
I briefly touched upon this idea when discussing iterating on the NYC prototype. We can add more detail to get USL folks set up better, but I think this might actually be a good initial exercise to get folks to work with multiple parts of the pipeline. |
Support dropout for training samples with min mean value below a configured threshold.