forked from Project-MONAI/MONAI
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port MONAI Generative utils (Project-MONAI#7134)
Towards completing Project-MONAI#6676 . ### 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`. - [x] In-line docstrings updated. - [x] Documentation updated, tested `make html` command in the `docs/` folder. --------- Signed-off-by: Mark Graham <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
1c17f0e
commit 83f5091
Showing
5 changed files
with
157 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# Copyright (c) MONAI Consortium | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from __future__ import annotations | ||
|
||
import unittest | ||
|
||
import numpy as np | ||
import torch | ||
from parameterized import parameterized | ||
|
||
from monai.utils import unsqueeze_left, unsqueeze_right | ||
|
||
RIGHT_CASES = [ | ||
(np.random.rand(3, 4).astype(np.float32), 5, (3, 4, 1, 1, 1)), | ||
(torch.rand(3, 4).type(torch.float32), 5, (3, 4, 1, 1, 1)), | ||
(np.random.rand(3, 4).astype(np.float64), 5, (3, 4, 1, 1, 1)), | ||
(torch.rand(3, 4).type(torch.float64), 5, (3, 4, 1, 1, 1)), | ||
(np.random.rand(3, 4).astype(np.int32), 5, (3, 4, 1, 1, 1)), | ||
(torch.rand(3, 4).type(torch.int32), 5, (3, 4, 1, 1, 1)), | ||
] | ||
|
||
|
||
LEFT_CASES = [ | ||
(np.random.rand(3, 4).astype(np.float32), 5, (1, 1, 1, 3, 4)), | ||
(torch.rand(3, 4).type(torch.float32), 5, (1, 1, 1, 3, 4)), | ||
(np.random.rand(3, 4).astype(np.float64), 5, (1, 1, 1, 3, 4)), | ||
(torch.rand(3, 4).type(torch.float64), 5, (1, 1, 1, 3, 4)), | ||
(np.random.rand(3, 4).astype(np.int32), 5, (1, 1, 1, 3, 4)), | ||
(torch.rand(3, 4).type(torch.int32), 5, (1, 1, 1, 3, 4)), | ||
] | ||
ALL_CASES = [ | ||
(np.random.rand(3, 4), 2, (3, 4)), | ||
(np.random.rand(3, 4), 0, (3, 4)), | ||
(np.random.rand(3, 4), -1, (3, 4)), | ||
(np.array(3), 4, (1, 1, 1, 1)), | ||
(np.array(3), 0, ()), | ||
(np.random.rand(3, 4).astype(np.int32), 2, (3, 4)), | ||
(np.random.rand(3, 4).astype(np.int32), 0, (3, 4)), | ||
(np.random.rand(3, 4).astype(np.int32), -1, (3, 4)), | ||
(np.array(3).astype(np.int32), 4, (1, 1, 1, 1)), | ||
(np.array(3).astype(np.int32), 0, ()), | ||
(torch.rand(3, 4), 2, (3, 4)), | ||
(torch.rand(3, 4), 0, (3, 4)), | ||
(torch.rand(3, 4), -1, (3, 4)), | ||
(torch.tensor(3), 4, (1, 1, 1, 1)), | ||
(torch.tensor(3), 0, ()), | ||
(torch.rand(3, 4).type(torch.int32), 2, (3, 4)), | ||
(torch.rand(3, 4).type(torch.int32), 0, (3, 4)), | ||
(torch.rand(3, 4).type(torch.int32), -1, (3, 4)), | ||
(torch.tensor(3).type(torch.int32), 4, (1, 1, 1, 1)), | ||
(torch.tensor(3).type(torch.int32), 0, ()), | ||
] | ||
|
||
|
||
class TestUnsqueeze(unittest.TestCase): | ||
@parameterized.expand(RIGHT_CASES + ALL_CASES) | ||
def test_unsqueeze_right(self, arr, ndim, shape): | ||
self.assertEqual(unsqueeze_right(arr, ndim).shape, shape) | ||
|
||
@parameterized.expand(LEFT_CASES + ALL_CASES) | ||
def test_unsqueeze_left(self, arr, ndim, shape): | ||
self.assertEqual(unsqueeze_left(arr, ndim).shape, shape) |