-
Notifications
You must be signed in to change notification settings - Fork 0
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
Pre-training on large-scale T2w healthy/pathology data #11
Draft
naga-karthik
wants to merge
274
commits into
main
Choose a base branch
from
nk/jv_vit_unetr_ssl
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
…lve number of workers issue Fixes: #8
It seems that the transform randomly selects a foreground point from image, then use it as center crop. This means that it can find the closest voxel that is just outside the SC and use it as the center (hence it includes the SC). Source: Project-MONAI/MONAI#452 (comment)
…or the RandCoarseDropoutd and RandCoarseShuffled transforms
number of holes to be used for the RandCoarseDropoutd and RandCoarseShuffled transforms
From contrast-agnostic SC seg transforms (which heavily deform the image) to simpler transforms more suitable for lesion seg. Context: #10 (comment) Co-authored-by: Naga Karthik Enamundram <[email protected]>
From MONAI doc (https://docs.monai.io/en/latest/transforms.html#randcoarsedropoutd): - if True, dropout the regions of holes and fill value specified by 'fill_value' - if False, keep the holes and dropout the outside and fill value specified by 'fill_value'
… are using two augmented samples per 3D Volume
… training/validation transforms
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.
This PR adds the code to do supervised (and self-supervised) pretraining on T2w MRI data from a collection of public/private, healthy/pathology datasets.
TODO: