Skip to content

Commit

Permalink
update changelog for v0.9.1 (#4744)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
wyli authored Jul 25, 2022
1 parent 6338ea4 commit 178e973
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [0.9.1] - 2022-07-22
### Added
* Support of `monai.data.MetaTensor` as core data structure across the modules
* Support of `inverse` in array-based transforms
* `monai.apps.TciaDataset` APIs for The Cancer Imaging Archive (TCIA) datasets, including a pydicom-backend reader
* Initial release of components for MRI reconstruction in `monai.apps.reconstruction`, including various FFT utilities
* New metrics and losses, including mean IoU and structural similarity index
Expand All @@ -27,6 +28,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* Wrong generalized Dice score metric when denominator is 0 but prediction is non-empty
* Docker image build error due to NGC CLI upgrade
* Optional default value when parsing id unavailable in a ConfigParser instance
* Immutable data input for the patch-based WSI datasets
### Deprecated
* `*_transforms` and `*_meta_dict` fields in dictionary-based transforms in favor of MetaTensor
* `meta_keys`, `meta_key_postfix`, `src_affine` arguments in various transforms, in favor of MetaTensor
* `AsChannelFirst` and `AddChannel`, in favor of `EnsureChannelFirst` transform

## [0.9.0] - 2022-06-08
### Added
Expand Down
2 changes: 0 additions & 2 deletions monai/transforms/spatial/array.py
Original file line number Diff line number Diff line change
Expand Up @@ -2192,8 +2192,6 @@ def __call__(
out = self.resampler(img, grid=grid, mode=_mode, padding_mode=_padding_mode)
if not isinstance(out, MetaTensor):
return out if self.image_only else (out, affine)
if not self.norm_coord:
warnings.warn("customized transform may not work with the metadata operation.")
if get_track_meta():
out.meta = img.meta # type: ignore
self.update_meta(out, affine, img_size, sp_size)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_lr_finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ def test_lr_finder(self):
section="validation",
val_frac=0.001,
download=True,
num_workers=10,
num_workers=2,
)
train_loader = DataLoader(train_ds, batch_size=300, shuffle=True, num_workers=10)
train_loader = DataLoader(train_ds, batch_size=300, shuffle=True, num_workers=2)
num_classes = train_ds.get_num_classes()

model = DenseNet(
Expand Down

0 comments on commit 178e973

Please sign in to comment.