monai-weekly 1.4.dev2426__py3-none-any.whl → 1.4.dev2428__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- monai/__init__.py +2 -2
- monai/_version.py +3 -3
- monai/apps/auto3dseg/auto_runner.py +1 -1
- monai/apps/generation/__init__.py +10 -0
- monai/apps/generation/maisi/__init__.py +10 -0
- monai/apps/generation/maisi/networks/__init__.py +10 -0
- monai/apps/generation/maisi/networks/autoencoderkl_maisi.py +973 -0
- monai/apps/generation/maisi/networks/controlnet_maisi.py +178 -0
- monai/apps/generation/maisi/networks/diffusion_model_unet_maisi.py +410 -0
- monai/apps/generation/maisi/utils/__init__.py +10 -0
- monai/apps/generation/maisi/utils/morphological_ops.py +170 -0
- monai/auto3dseg/utils.py +1 -1
- monai/data/torchscript_utils.py +1 -1
- monai/data/ultrasound_confidence_map.py +5 -5
- monai/optimizers/lr_finder.py +1 -1
- monai/transforms/io/array.py +3 -3
- monai/utils/misc.py +20 -2
- {monai_weekly-1.4.dev2426.dist-info → monai_weekly-1.4.dev2428.dist-info}/METADATA +5 -5
- {monai_weekly-1.4.dev2426.dist-info → monai_weekly-1.4.dev2428.dist-info}/RECORD +22 -14
- {monai_weekly-1.4.dev2426.dist-info → monai_weekly-1.4.dev2428.dist-info}/WHEEL +1 -1
- {monai_weekly-1.4.dev2426.dist-info → monai_weekly-1.4.dev2428.dist-info}/LICENSE +0 -0
- {monai_weekly-1.4.dev2426.dist-info → monai_weekly-1.4.dev2428.dist-info}/top_level.txt +0 -0
monai/__init__.py
CHANGED
@@ -17,7 +17,7 @@ import sys
|
|
17
17
|
from ._version import get_versions
|
18
18
|
|
19
19
|
PY_REQUIRED_MAJOR = 3
|
20
|
-
PY_REQUIRED_MINOR =
|
20
|
+
PY_REQUIRED_MINOR = 9
|
21
21
|
|
22
22
|
version_dict = get_versions()
|
23
23
|
__version__: str = version_dict.get("version", "0+unknown")
|
@@ -93,4 +93,4 @@ except BaseException:
|
|
93
93
|
|
94
94
|
if MONAIEnvVars.debug():
|
95
95
|
raise
|
96
|
-
__commit_id__ = "
|
96
|
+
__commit_id__ = "14b086b553693f5d344ff054f37d12ce6839da06"
|
monai/_version.py
CHANGED
@@ -8,11 +8,11 @@ import json
|
|
8
8
|
|
9
9
|
version_json = '''
|
10
10
|
{
|
11
|
-
"date": "2024-
|
11
|
+
"date": "2024-07-14T02:21:44+0000",
|
12
12
|
"dirty": false,
|
13
13
|
"error": null,
|
14
|
-
"full-revisionid": "
|
15
|
-
"version": "1.4.
|
14
|
+
"full-revisionid": "2d242d8f1b2876133bcafbe7fa5d967728a74998",
|
15
|
+
"version": "1.4.dev2428"
|
16
16
|
}
|
17
17
|
''' # END VERSION_JSON
|
18
18
|
|
@@ -551,7 +551,7 @@ class AutoRunner:
|
|
551
551
|
cmd_prefix: command line prefix for subprocess running in BundleAlgo and EnsembleRunner.
|
552
552
|
Default using env "CMD_PREFIX" or None, examples are:
|
553
553
|
|
554
|
-
- single GPU/CPU or multinode bcprun: "python " or "/opt/conda/bin/python3.
|
554
|
+
- single GPU/CPU or multinode bcprun: "python " or "/opt/conda/bin/python3.9 ",
|
555
555
|
- single node multi-GPU running "torchrun --nnodes=1 --nproc_per_node=2 "
|
556
556
|
|
557
557
|
If user define this prefix, please make sure --nproc_per_node matches cuda_visible_device or
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Copyright (c) MONAI Consortium
|
2
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
3
|
+
# you may not use this file except in compliance with the License.
|
4
|
+
# You may obtain a copy of the License at
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
|
+
# Unless required by applicable law or agreed to in writing, software
|
7
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
8
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
9
|
+
# See the License for the specific language governing permissions and
|
10
|
+
# limitations under the License.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Copyright (c) MONAI Consortium
|
2
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
3
|
+
# you may not use this file except in compliance with the License.
|
4
|
+
# You may obtain a copy of the License at
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
|
+
# Unless required by applicable law or agreed to in writing, software
|
7
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
8
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
9
|
+
# See the License for the specific language governing permissions and
|
10
|
+
# limitations under the License.
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# Copyright (c) MONAI Consortium
|
2
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
3
|
+
# you may not use this file except in compliance with the License.
|
4
|
+
# You may obtain a copy of the License at
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
|
+
# Unless required by applicable law or agreed to in writing, software
|
7
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
8
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
9
|
+
# See the License for the specific language governing permissions and
|
10
|
+
# limitations under the License.
|