-
Notifications
You must be signed in to change notification settings - Fork 505
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
Observation transformation registry for Habitat baselines to provide input cropping, resizing, etc. #367
Comments
Would it be better to have this in the models hierarchy? The data augmentation must not impact the visualization aspect of the trainer, right? |
@srama2512 I think it might be best to have this as part of the policy instantiation introduced by @rpartsey in #452 and #453 . |
I haven't been following the policy registry issue. Just checked it out. That's a brilliant feature! And yes, this would fit perfectly there. |
@srama2512 That's not entirely true, there definitely are some 'data' augmentations you want to visualize. Like creating a fake depth sensor that is just a neural network that is fed RGB input. Seeing the results of that would be desirable, so it's not quite that simple. |
@Skylion007 - Wouldn't that just be a part of the model definition though? That is, having a depth-prediction module. In this case, the network would only take an RGB input. |
@srama2512 Your comments would be appreciated on #478 |
Closed by #478 |
🚀 Feature
Observation transformation registry for Habitat baselines to provide input cropping, resizing, etc.
Motivation
To make training pipeline agnostic to observation resolution or experiment with grayscale observations instead of RGB that would be great to have a list of supported transformations.
Reference Resize and crop PR.
Pitch
Alternative way
Same transformation can be implemented in Models hierarchy.
The text was updated successfully, but these errors were encountered: