https://github.com/project-monai/model-zoo
MONAI Model Zoo that hosts models in the MONAI Bundle format.
https://github.com/project-monai/model-zoo
Last synced: 11 months ago
JSON representation
MONAI Model Zoo that hosts models in the MONAI Bundle format.
- Host: GitHub
- URL: https://github.com/project-monai/model-zoo
- Owner: Project-MONAI
- License: apache-2.0
- Created: 2022-05-09T03:40:16.000Z (almost 4 years ago)
- Default Branch: dev
- Last Pushed: 2025-04-09T09:19:31.000Z (12 months ago)
- Last Synced: 2025-05-12T11:51:39.963Z (11 months ago)
- Language: Python
- Homepage:
- Size: 38.4 MB
- Stars: 237
- Watchers: 10
- Forks: 78
- Open Issues: 56
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# MONAI Model Zoo
MONAI Model Zoo hosts a collection of medical imaging models in the [MONAI Bundle](https://docs.monai.io/en/latest/bundle_intro.html) format.
All source code of models (bundles) are tracked in `models/`, and for each distinct version of a bundle, it will be archived as a `.zip` file (named in the form of `bundle_name_version.zip`) and stored in `Releases`.
## Getting Started
To browse the available models, please see https://monai.io/model-zoo.
A basic example to download and extract a bundle is:
```bash
pip install "monai[fire]"
python -m monai.bundle download "spleen_ct_segmentation" --bundle_dir "bundles/"
```
- The commands will download `spleen_ct_segmentation` to the current directory's `bundles/` subdirectory.
- For more downloading options, please run `python -m monai.bundle download -h`
- For the specific usage of a bundle, please refer to its `docs` folder, for example, `bundles/spleen_ct_segmentation/docs`.
To get started with the models, please see [the example use cases](https://github.com/Project-MONAI/tutorials/tree/main/model_zoo).
## Template Bundles
We aim to provide a number of template bundles in the zoo for you to copy and adapt to your own needs.
This should help you reduce effort in developing your own bundles and also demonstrate what we feel to be good practice and design.
We currently have the following:
* [Segmentation Template](./models/segmentation_template)
## License
Bundles released on the MONAI Model Zoo require a license for the software itself comprising the configuration files and model weights. You are required to adhere to the license conditions included with each bundle, as well as any license conditions stated for data bundles may include or use (please check the file `docs/data_license.txt` if it is existing within the bundle directory).
The MONAI Model Zoo repository itself follows [Apache License](https://github.com/Project-MONAI/model-zoo/blob/dev/LICENSE), thus you need to follow this license if using its software, and we recommend this license for bundles.
The MONAI Model Zoo does not make any statement of the suitability of any model for a particular task, especially not for therapeutic or diagnostic use.
## Contributing
To make a contribution in MONAI Model Zoo, see the [contributing guidelines](https://github.com/Project-MONAI/model-zoo/blob/dev/CONTRIBUTING.md).
## Links
- The models are currently hosted at https://github.com/Project-MONAI/model-zoo/releases/tag/hosting_storage_v1
- MONAI Bundle API tutorials: https://github.com/Project-MONAI/tutorials/tree/main/bundle
- MONAI Bundle demo: https://github.com/Project-MONAI/tutorials/tree/main/model_zoo
- MONAI model zoo browser: https://monai.io/model-zoo.html