-
Notifications
You must be signed in to change notification settings - Fork 3
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
Port towards config file-based training #90
Merged
Merged
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
jcohenadad
reviewed
Dec 4, 2023
The line "--extra-index-url" makes it tricky to run requirements via setup.py, so the strategy is to simply run pip install once for the requirements, and another time for the package install
Required by #94
valosekj
reviewed
Feb 23, 2024
csa_qc_evaluation_spine_generic/comparison_across_thresholds.sh
Outdated
Show resolved
Hide resolved
valosekj
reviewed
Feb 23, 2024
csa_qc_evaluation_spine_generic/comparison_across_training_labels.sh
Outdated
Show resolved
Hide resolved
valosekj
reviewed
Feb 23, 2024
valosekj
reviewed
Feb 23, 2024
valosekj
reviewed
Feb 23, 2024
sandrinebedard
approved these changes
Mar 7, 2024
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 heavily improves the way we train the contrast-agnostic model. Earlier, a lot of important arguments were passed through the command line, making the arguments list ever increasing and messy. With this PR, all the important params (and hyperparams) are specified in
.yaml
file that could be used for training. This could help other segmentation projects looking to use monai-based models to improve upon or replace nnUNet model.Usage is now as simple as:
This improved training strategy is mainly motivated by #87 - a follow-up project looking at the model drift (using lifelong learning) when training the contrast-agnostic model by adding more datasets. This also makes the training easier for a foundational model for SC segmentation that we were discussing with @valosekj .