Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
04e79ed
Merge remote-tracking branch 'origin/main' into main
KumoLiu Jul 21, 2022
4c2b7b3
Merge remote-tracking branch 'origin/main' into main
KumoLiu Jul 22, 2022
078a770
Merge remote-tracking branch 'origin/main' into main
KumoLiu Jul 22, 2022
38de0d2
Merge remote-tracking branch 'origin/main' into main
KumoLiu Jul 25, 2022
4726117
Merge remote-tracking branch 'origin/main' into main
KumoLiu Jul 26, 2022
79dd41f
Merge remote-tracking branch 'origin/main' into main
KumoLiu Aug 6, 2022
5ac6c2d
Merge remote-tracking branch 'origin/main' into main
KumoLiu Aug 18, 2022
9138bcd
Merge remote-tracking branch 'origin/main' into main
KumoLiu Aug 22, 2022
fd6a6b1
easy-integrate-bundle-v1
KumoLiu Aug 22, 2022
58ce3ca
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 22, 2022
7b69b3a
add multigpu implementation
KumoLiu Aug 23, 2022
567da73
Merge remote-tracking branch 'yliu/easy-integrate-bundle' into main
KumoLiu Aug 23, 2022
a152924
Merge remote-tracking branch 'yliu/easy-integrate-bundle' into easy-i…
KumoLiu Aug 23, 2022
e4fd544
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Aug 23, 2022
e40cf40
Merge remote-tracking branch 'yliu/easy-integrate-bundle' into main
KumoLiu Aug 23, 2022
a4f29d1
Merge branch 'main' of https://github.com/Project-MONAI/tutorials int…
KumoLiu Sep 9, 2022
4494091
Merge branch 'main' of https://github.com/Project-MONAI/tutorials int…
KumoLiu Sep 9, 2022
4b190c3
minor fix
KumoLiu Sep 9, 2022
0a22112
del remove file
KumoLiu Sep 9, 2022
63337a5
Merge branch 'main' into update_seg_tutorials
wyli Sep 11, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 3d_segmentation/challenge_baseline/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ During training, the top three models will be selected based on the per-epoch va

The training uses convenient file loading modules and a few intensity and spatial random augmentations using [MONAI](https://github.com/Project-MONAI/MONAI):

- `LoadImaged`, `AddChanneld`, `Orientationd`, `Spacingd`, `ScaleIntensityRanged`
- `LoadImaged`, `Orientationd`, `Spacingd`, `ScaleIntensityRanged`

Load the image data into the LPS orientation (Left to right, Posterior to anterior, Superior to inferior), with a resolution of 1.25mm x 1.25mm x 5.00mm, and intensity between [-1000.0, 500.0] scaled to [0.0, 1.0].

Expand Down
2 changes: 1 addition & 1 deletion 3d_segmentation/swin_unetr_brats21_segmentation_3d.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@
"torch.backends.cudnn.benchmark = True\n",
"dice_loss = DiceLoss(to_onehot_y=False, sigmoid=True)\n",
"post_sigmoid = Activations(sigmoid=True)\n",
"post_pred = AsDiscrete(argmax=False, logit_thresh=0.5)\n",
"post_pred = AsDiscrete(argmax=False, threshold=0.5)\n",
"dice_acc = DiceMetric(\n",
" include_background=True, reduction=MetricReduction.MEAN_BATCH, get_not_nans=True\n",
")\n",
Expand Down