Skip to content

Commit aa4f2de

Browse files
Merge branch 'Project-MONAI:dev' into 4980-get-wsi-at-mpp
2 parents e73cff8 + b58e883 commit aa4f2de

22 files changed

+974
-54
lines changed

docs/source/apps.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,3 +277,15 @@ FastMRIReader
277277

278278
.. autoclass:: monai.apps.nnunet.nnUNetV2Runner
279279
:members:
280+
281+
`nnUNet Bundle`
282+
---------------
283+
.. autoclass:: monai.apps.nnunet.ModelnnUNetWrapper
284+
:members:
285+
:special-members:
286+
287+
.. autofunction:: monai.apps.nnunet.get_nnunet_trainer
288+
.. autofunction:: monai.apps.nnunet.get_nnunet_monai_predictor
289+
.. autofunction:: monai.apps.nnunet.convert_nnunet_to_monai_bundle
290+
.. autofunction:: monai.apps.nnunet.convert_monai_bundle_to_nnunet
291+
.. autofunction:: monai.apps.nnunet.get_network_from_nnunet_plans

docs/source/bundle.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ Model Bundle
3434
:members:
3535
:special-members:
3636

37+
3738
`Scripts`
3839
---------
3940
.. autofunction:: ckpt_export

monai/apps/nnunet/__init__.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,13 @@
1111

1212
from __future__ import annotations
1313

14+
from .nnunet_bundle import (
15+
ModelnnUNetWrapper,
16+
convert_monai_bundle_to_nnunet,
17+
convert_nnunet_to_monai_bundle,
18+
get_network_from_nnunet_plans,
19+
get_nnunet_monai_predictor,
20+
get_nnunet_trainer,
21+
)
1422
from .nnunetv2_runner import nnUNetV2Runner
1523
from .utils import NNUNETMode, analyze_data, create_new_data_copy, create_new_dataset_json

0 commit comments

Comments
 (0)