Skip to content

Commit

Permalink
release monailabel 0.5.2 (#1089)
Browse files Browse the repository at this point in the history
Signed-off-by: Sachidanand Alle <sachidanand.alle@gmail.com>

Signed-off-by: Sachidanand Alle <sachidanand.alle@gmail.com>
  • Loading branch information
SachidanandAlle authored Oct 24, 2022
1 parent 2881879 commit 99c10dc
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ and supported visualization tools with latest release of MONAI Label. Weekly pre

Current Milestone Release of MONAI Label:

* `0.5.1 <https://pypi.org/project/monailabel/>`_
* `0.5.2 <https://pypi.org/project/monailabel/>`_

MONAI Label Supported Stable Visualization Tools:

Expand Down
17 changes: 17 additions & 0 deletions docs/source/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,23 @@
What's New
==========

0.5.2
=====

- Bundle support (Endoscopy Sample App)

- `Tool Tracking segmentation model <https://github.com/Project-MONAI/model-zoo/tree/dev/models/endoscopic_tool_segmentation>`_
- `InBody vs OutBody classification model <https://github.com/Project-MONAI/model-zoo/tree/dev/models/endoscopic_inbody_classification>`_
- Rest APIs to download latest trained model and stats
- Interactive NuClick segmentation in DSA | `Demo <https://medicine.ai.uky.edu/wp-content/uploads/2022/10/interactive_cell_labeling_via_nucklick_in_dsa.mp4>`_
- 3D Slicer UI Improvements
- Improvements on MONAI Bundle App

- support local bundles (pre-downloaded)
- support customized scripts
- Support for MONAI `1.0.1 <https://github.com/Project-MONAI/MONAI/releases/tag/1.0.1>`_


0.5.1
=====
- Endoscopy Sample App
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ types-PyYAML
types-filelock
types-requests
types-cachetools
click>=8.1.3
click>=8.1.2
testresources
pre-commit
attrs>=22.1.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# limitations under the License.

torch>=1.7
monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire]>=1.0.1rc3
monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire]>=1.0.1
uvicorn==0.17.6
pydantic>=1.8.2
python-dotenv==0.20.0
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ setup_requires =
ninja
install_requires =
torch>=1.7
monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire]>=1.0.1rc3
monai[nibabel, skimage, pillow, tensorboard, gdown, ignite, torchvision, itk, tqdm, lmdb, psutil, openslide, fire]>=1.0.1
uvicorn==0.17.6
pydantic>=1.8.2
python-dotenv==0.20.0
Expand Down
3 changes: 2 additions & 1 deletion tests/unit/transform/test_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,11 @@ def test_seg_nrrd(self, args, input_data):

self.assertEqual(arr_full.shape, (CHANNELS, WIDTH, HEIGHT, 1))

# TODO:: This depends on later versions of numpy (fix the input/output comparisons for nans)
space_directions_expected = np.array(
[[np.nan, np.nan, np.nan], [-1.0, 0.0, 0.0], [0.0, -1.0, 0.0], [0.0, 0.0, 1.0]]
)
self.assertTrue(np.array_equal(header["space directions"], space_directions_expected, equal_nan=True))
# self.assertTrue(np.array_equal(header["space directions"], space_directions_expected, equal_nan=True))

self.assertEqual(header["kinds"], ["list", "domain", "domain", "domain"])
self.assertEqual(header["Segment1_ID"], "lung")
Expand Down

0 comments on commit 99c10dc

Please sign in to comment.