---
license: cc-by-nc-sa-4.0
pipeline_tag: image-segmentation
---
# nnInteractive: Redefining 3D Promptable Segmentation
This repository hosts the official model checkpoints for `nnInteractive`, a state-of-the-art framework for 3D promptable segmentation.
> đź“– **Full documentation, installation, and usage live in the GitHub repository:**
> 👉 **[github.com/MIC-DKFZ/nnInteractive](https://github.com/MIC-DKFZ/nnInteractive)**
>
> Please refer to GitHub for the Python backend, installation instructions, code examples, the SuperVoxel module, and the changelog. This page only covers downloading the checkpoint.
`nnInteractive` is also available through graphical viewers (GUI) for those who prefer a visual workflow. The napari and MITK integrations are developed and maintained by our team. Thanks to the community for contributing further integrations!
](https://github.com/MIC-DKFZ/napari-nninteractive) | [
](https://www.mitk.org/wiki/MITK-nnInteractive) | [
](https://github.com/coendevente/SlicerNNInteractive) | [
](https://itksnap-dls.readthedocs.io/en/latest/quick_start.html) | [
](https://github.com/CCI-Bonn/OHIF-AI) |
## Downloading the checkpoint
You normally don't need to download the weights manually — the napari, MITK, and other integrations, as well as the Python backend, fetch them for you. If you want the raw checkpoint, the snippet below pulls it from this repository:
```python
from huggingface_hub import snapshot_download # pip install huggingface_hub
REPO_ID = "nnInteractive/nnInteractive"
MODEL_NAME = "nnInteractive_v1.0" # Updated models may be available in the future
download_path = snapshot_download(
repo_id=REPO_ID,
allow_patterns=[f"{MODEL_NAME}/*"],
)
# The checkpoint is now in download_path/MODEL_NAME.
```
For how to actually run inference with these weights, see the [GitHub README](https://github.com/MIC-DKFZ/nnInteractive).
## Citation
When using nnInteractive, please cite the following paper:
> Isensee, F.\*, Rokuss, M.\*, Krämer, L.\*, Dinkelacker, S., Ravindran, A., Stritzke, F., Hamm, B., Wald, T., Langenberg, M., Ulrich, C., Deissler, J., Floca, R., & Maier-Hein, K. (2025). nnInteractive: Redefining 3D Promptable Segmentation. https://arxiv.org/abs/2503.08373 \
> *: equal contribution
Link: [](https://arxiv.org/abs/2503.08373)
# License
The model checkpoint hosted in this repository is licensed under `Creative Commons Attribution Non Commercial Share Alike 4.0` (CC-BY-NC-SA-4.0); see [`nnInteractive_v1.0/LICENSE`](nnInteractive_v1.0/LICENSE). Note that the [Python backend code](https://github.com/MIC-DKFZ/nnInteractive) is released separately under the Apache-2.0 license.
## Acknowledgments