Skip to content

Commit

Permalink
7030 Fixes docker release (#7031)
Browse files Browse the repository at this point in the history
Fixes #7030 and typos

### Types of changes
<!--- Put an `x` in all the boxes that apply, and remove the not
applicable items -->
- [x] Non-breaking change (fix or new feature that would not break
existing functionality).
- [ ] Breaking change (fix or new feature that would cause existing
functionality to change).
- [ ] New tests added to cover the changes.
- [ ] Integration tests passed locally by running `./runtests.sh -f -u
--net --coverage`.
- [ ] Quick tests passed locally by running `./runtests.sh --quick
--unittests --disttests`.
- [ ] In-line docstrings updated.
- [ ] Documentation updated, tested `make html` command in the `docs/`
folder.

---------

Signed-off-by: Wenqi Li <[email protected]>
  • Loading branch information
wyli authored Sep 22, 2023
1 parent 7dfa0b9 commit bfabad7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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

0 comments on commit bfabad7

Please sign in to comment.