Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ jobs:
RELEASE_VERSION: ${{ steps.versioning.outputs.tag }}
shell: bash
run: |
rm -rf /opt/hostedtoolcache
# get tag info for versioning
mv _version.py monai/
# version checks
Expand Down
2 changes: 1 addition & 1 deletion monai/networks/nets/segresnet_ds.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def forward(self, x):

class SegResEncoder(nn.Module):
"""
SegResEncoder based on the econder structure in `3D MRI brain tumor segmentation using autoencoder regularization
SegResEncoder based on the encoder structure in `3D MRI brain tumor segmentation using autoencoder regularization
<https://arxiv.org/pdf/1810.11654.pdf>`_.

Args:
Expand Down
2 changes: 1 addition & 1 deletion monai/transforms/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def rescale_array(
Args:
arr: input array to rescale.
minv: minimum value of target rescaled array.
maxv: maxmum value of target rescaled array.
maxv: maximum value of target rescaled array.
dtype: if not None, convert input array to dtype before computation.

"""
Expand Down