Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update figures #5760

Merged
merged 4 commits into from
Dec 18, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/images/hovernet_diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 10 additions & 2 deletions docs/source/whatsnew_1_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

## Digital pathology workflows

![hovernet](../images/hovernet_diagram.png)

Hover-Net is a model for simultaneous segmentation and classification of nuclei in multi-tissue histology images (Graham et al. Medical Image Analysis, 2019).
We have added support for this model in MONAI by implementing several new components, enhancing existing ones and providing pipelines and examples for training, validation and inference.

Expand All @@ -22,6 +24,8 @@ and [inference](https://github.com/Project-MONAI/tutorials/blob/main/pathology/n

## Experiment management for MONAI bundle

![exp_mgmt](../images/exp_mgmt.png)

In this release, experiment management features are integrated with MONAI bundle.
It provides essential APIs for managing the end-to-end model bundle lifecycle.
Users can start tracking experiments by, for example, appending `--tracking "mlflow"` to the training or inference commands to enable the MLFlow-based management.
Expand All @@ -38,6 +42,8 @@ CT and PET images of various resolutions and sizes. A tutorial example of
running Auto3DSeg on the HECKTOR22 challenge dataset is available in MONAI
Tutorials. The tutorial is based on [the HECKTOR22 challenge 1st place solution](https://arxiv.org/abs/2209.10809).
- A new improved version of `Segresnet` Algo is now available in `AutoRunner`.
In this version, data caching is more efficient and the preprocessing transforms are more flexible.
The workflow progresses including the timings of steps are written to console output as well as a YAML file.
- Automatic customization and optimization of the model training configuration
can be achieved according to the GPU devices used. The feature
focuses on determining parameters including batch size of model
Expand All @@ -52,8 +58,10 @@ Notably,
- The `mednist_reg` model demonstrates how to build image registration workflows in MONAI bundle
format. The model uses a ResNet and spatial transformer for hand X-ray image registration based on
[the registration_mednist tutorial](https://github.com/Project-MONAI/tutorials/blob/main/2d_registration/registration_mednist.ipynb),
- `pathology_nuclei_segmentation_and_classification`, `pathology_nuclick_annotation`, and
`pathology_nuclei_classification` bundles are built for digital pathology image analysis.
- `pathology_nuclei_segmentation_and_classification`,
`pathology_nuclick_annotation`, and `pathology_nuclei_classification` bundles
are built for [digital pathology image
analysis](https://github.com/Project-MONAI/model-zoo/tree/dev/models/pathology_nuclei_segmentation_classification).

For more details about how to use the models, please see [the tutorials](https://github.com/Project-MONAI/tutorials/tree/main/model_zoo).

Expand Down