Skip to content

Commit 178e973

Browse files
authored
update changelog for v0.9.1 (#4744)
* update changelog Signed-off-by: Wenqi Li <[email protected]> * remove warning msg Signed-off-by: Wenqi Li <[email protected]> * update n workers for smaller testing memory usage Signed-off-by: Wenqi Li <[email protected]>
1 parent 6338ea4 commit 178e973

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
99
## [0.9.1] - 2022-07-22
1010
### Added
1111
* Support of `monai.data.MetaTensor` as core data structure across the modules
12+
* Support of `inverse` in array-based transforms
1213
* `monai.apps.TciaDataset` APIs for The Cancer Imaging Archive (TCIA) datasets, including a pydicom-backend reader
1314
* Initial release of components for MRI reconstruction in `monai.apps.reconstruction`, including various FFT utilities
1415
* New metrics and losses, including mean IoU and structural similarity index
@@ -27,6 +28,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2728
* Wrong generalized Dice score metric when denominator is 0 but prediction is non-empty
2829
* Docker image build error due to NGC CLI upgrade
2930
* Optional default value when parsing id unavailable in a ConfigParser instance
31+
* Immutable data input for the patch-based WSI datasets
32+
### Deprecated
33+
* `*_transforms` and `*_meta_dict` fields in dictionary-based transforms in favor of MetaTensor
34+
* `meta_keys`, `meta_key_postfix`, `src_affine` arguments in various transforms, in favor of MetaTensor
35+
* `AsChannelFirst` and `AddChannel`, in favor of `EnsureChannelFirst` transform
3036

3137
## [0.9.0] - 2022-06-08
3238
### Added

Diff for: monai/transforms/spatial/array.py

-2
Original file line numberDiff line numberDiff line change
@@ -2192,8 +2192,6 @@ def __call__(
21922192
out = self.resampler(img, grid=grid, mode=_mode, padding_mode=_padding_mode)
21932193
if not isinstance(out, MetaTensor):
21942194
return out if self.image_only else (out, affine)
2195-
if not self.norm_coord:
2196-
warnings.warn("customized transform may not work with the metadata operation.")
21972195
if get_track_meta():
21982196
out.meta = img.meta # type: ignore
21992197
self.update_meta(out, affine, img_size, sp_size)

Diff for: tests/test_lr_finder.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ def test_lr_finder(self):
6969
section="validation",
7070
val_frac=0.001,
7171
download=True,
72-
num_workers=10,
72+
num_workers=2,
7373
)
74-
train_loader = DataLoader(train_ds, batch_size=300, shuffle=True, num_workers=10)
74+
train_loader = DataLoader(train_ds, batch_size=300, shuffle=True, num_workers=2)
7575
num_classes = train_ds.get_num_classes()
7676

7777
model = DenseNet(

0 commit comments

Comments
 (0)