[WiP] Sen4Map inheritance class change to geobench-compatible datamodule and dataset classes#227
Closed
MinasMayth wants to merge 7 commits into
Closed
[WiP] Sen4Map inheritance class change to geobench-compatible datamodule and dataset classes#227MinasMayth wants to merge 7 commits into
MinasMayth wants to merge 7 commits into
Conversation
…ssification update Signed-off-by: hashim1 <hashim1@jwlogin24.juwels>
Signed-off-by: hashim1 <hashim1@jwlogin21.juwels>
…ions from eli Signed-off-by: hashim1 <hashim1@jwlogin24.juwels>
Contributor
|
Hi, @MinasMayth. It seems this work has entered in permanent regime. Do you feel confident to send it for review or prefer continue editing it ? |
Author
|
HI,
I am unable to continue working on this currently, so I would ask the issue
be covered by someone else. Apologies!
Kind regards,
MinasMayth
…On Wed, 26 Feb 2025 at 14:06, João Lucas de Sousa Almeida < ***@***.***> wrote:
Hi, @MinasMayth <https://github.com/MinasMayth>. It seems this work has
entered in permanent regime. Do you feel confident to send it for review or
prefer continue editing it ?
If so, you may add me as reviewer.
—
Reply to this email directly, view it on GitHub
<#227 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMYXIFERCVXZKTQXBAYQ3EL2RW34LAVCNFSM6AAAAABRLLYP22VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMOBUHEYDKMZSHE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
[image: Joao-L-S-Almeida]*Joao-L-S-Almeida* left a comment
(torchgeo/terratorch#227)
<#227 (comment)>
Hi, @MinasMayth <https://github.com/MinasMayth>. It seems this work has
entered in permanent regime. Do you feel confident to send it for review or
prefer continue editing it ?
If so, you may add me as reviewer.
—
Reply to this email directly, view it on GitHub
<#227 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AMYXIFERCVXZKTQXBAYQ3EL2RW34LAVCNFSM6AAAAABRLLYP22VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDMOBUHEYDKMZSHE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Contributor
|
Thanks @MinasMayth . I'll keep your branch open and I'll try to continue it. |
Collaborator
|
@MinasMayth @Joao-L-S-Almeida closing due to inactivity, feel free top reopen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue first raised in #226, Sen4map dataclass and datamodule classes currently only inherit from pytorch lightning, which is functionally adequate for terratorch but will not work with benchmark. I have updated the datamodule class to inherit from NonGeoDataModule, which required a few extra changes.
To get the Sen4map datamodule class to work with inheritance from NonGeoDataModule I had to define a custom augmentation
self.aug = AugmentationSequential(K.RandomEqualize3D(), data_keys=None), is this okay? What is the default augmentation and why does it only (seemingly) work for BCHW tensors and not BCDHW tensors?