-
Notifications
You must be signed in to change notification settings - Fork 793
Vikash/fix/monai 1 6 release notebooks #2066
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
Open
vikashg
wants to merge
13
commits into
Project-MONAI:main
Choose a base branch
from
vikashg:vikash/fix/monai_1_6_release_notebooks
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.
Open
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
d6e252e
fix: update runner.sh and endoscopic notebook for MONAI 1.6 compatibi…
garciadias 7877af8
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] a862ed1
fix: apply PEP8 autofix to 3 notebooks (E225/E231 whitespace violations)
garciadias 252b9d6
Fix bundle/05_spleen_segmentation_lightning: upgrade pytorch-lightnin…
garciadias f3f49ff
fix: revert return_state_dict change; update R5/R8 diagnostics
garciadias a581217
style: add trailing newline to endoscopic_inbody_classification.ipynb
garciadias c62cc06
fix: skip 05_spleen_segmentation_lightning in CPU CI
garciadias 3d198d8
fix: skip deep_atlas_tutorial in CPU CI
garciadias d38d101
fix: remove non-existent hovernet_infer_compare from doesnt_contain_m…
garciadias 14e1ef8
fix: replace dead monai.io URL with GitHub raw URL in load_medical_im…
vikashg a0d4971
fix(modules): class_lung_lesion.ipynb — unknown
vikashg d0321b4
fix(modules): lazy_resampling_benchmark.ipynb — unknown
vikashg 3198637
fix(modules): omniverse_integration.ipynb — unknown
vikashg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
100 changes: 3 additions & 97 deletions
100
computer_assisted_intervention/endoscopic_inbody_classification.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🩺 Stability & Availability | 🟡 Minor | ⚡ Quick win
Quoting
$patternfixes one issue butfiles=($(...))still splits on whitespace/globs.The fix correctly quotes
$patternto avoid breaking on spaces within the pattern, but the outer array assignmentfiles=($(echo ... | xargs find ...))still performs unquoted command substitution, which is subject to word-splitting and pathname expansion on thefindoutput (e.g., filenames with spaces will be split into multiple array elements). Shellcheck flags this (SC2207).🛠️ Suggested fix using mapfile
📝 Committable suggestion
🧰 Tools
🪛 Shellcheck (0.11.0)
[warning] 453-453: Prefer mapfile or read -a to split command output (or quote to avoid splitting).
(SC2207)
🤖 Prompt for AI Agents
Source: Linters/SAST tools