Skip to main content

A Candy for Medical Image Processing

Project description

MIP Candy: A Candy for Medical Image Processing

PyPI GitHub Release PyPI Downloads GitHub Stars

poster

MIP Candy is Project Neura's next-generation infrastructure framework for medical image processing. It defines a handful of common network architectures with their corresponding training, inference, and evaluation pipelines that are out-of-the-box ready to use. Additionally, it also provides integrations with popular frontend dashboards such as Notion, WandB, and TensorBoard.

We provide a flexible and extensible framework for medical image processing researchers to quickly prototype their ideas. MIP Candy takes care of all the rest, so you can focus on only the key experiment designs.

:link: Home

:link: Docs

Key Features

Why MIP Candy? :thinking:

Easy adaptation to fit your needs We provide tons of easy-to-use techniques for training that seamlessly support your customized experiments.
  • Sliding window
  • ROI inspection
  • ROI cropping to align dataset shape (100% or 33% foreground)
  • Automatic padding
  • ...

You only need to override one method to create a trainer for your network architecture.

from typing import override

from torch import nn
from mipcandy import SegmentationTrainer


class MyTrainer(SegmentationTrainer):
    @override
    def build_network(self, example_shape: tuple[int, ...]) -> nn.Module:
        ...
Satisfying command-line UI design cmd-ui
Built-in 2D and 3D visualization for intuitive understanding visualization
High availability with interruption tolerance Interrupted experiments can be resumed with ease. recovery
Support of various frontend platforms for remote monitoring

MIP Candy Supports Notion, WandB, and TensorBoard.

notion

Installation

Note that MIP Candy requires Python >= 3.12.

pip install "mipcandy[standard]"

Quick Start

Below is a simple example of a nnU-Net style training. The batch size is set to 1 due to the varying shape of the dataset, although you can use a ROIDataset to align the shapes.

from typing import override

import torch
from mipcandy_bundles.unet import UNetTrainer
from torch.utils.data import DataLoader

from mipcandy import download_dataset, NNUNetDataset


class PH2(NNUNetDataset):
    @override
    def load(self, idx: int) -> tuple[torch.Tensor, torch.Tensor]:
        image, label = super().load(idx)
        return image.squeeze(0).permute(2, 0, 1), label


download_dataset("nnunet_datasets/PH2", "tutorial/datasets/PH2")
dataset, val_dataset = PH2("tutorial/datasets/PH2", device="cuda").fold()
dataloader = DataLoader(dataset, 1, shuffle=True)
val_dataloader = DataLoader(val_dataset, 1, shuffle=False)
trainer = UNetTrainer("tutorial", dataloader, val_dataloader, device="cuda")
trainer.train(1000, note="a nnU-Net style example")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mipcandy-1.1.1a0.tar.gz (39.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mipcandy-1.1.1a0-py3-none-any.whl (52.9 kB view details)

Uploaded Python 3

File details

Details for the file mipcandy-1.1.1a0.tar.gz.

File metadata

  • Download URL: mipcandy-1.1.1a0.tar.gz
  • Upload date:
  • Size: 39.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mipcandy-1.1.1a0.tar.gz
Algorithm Hash digest
SHA256 8981a34c1b17b19053e70f0c51278fcefa8a3522cced17ddcc5b09cc821e4b80
MD5 de1aafdc7cc99a096befc77a1a78d97d
BLAKE2b-256 7a8ad28fe0644553f65db12389908a5c31ebfc885ddfd705237c8a55c9e9cef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mipcandy-1.1.1a0.tar.gz:

Publisher: python-publish.yml on ProjectNeura/MIPCandy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mipcandy-1.1.1a0-py3-none-any.whl.

File metadata

  • Download URL: mipcandy-1.1.1a0-py3-none-any.whl
  • Upload date:
  • Size: 52.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for mipcandy-1.1.1a0-py3-none-any.whl
Algorithm Hash digest
SHA256 30d6013fe34e2a89a000fe197e9d985cfaf97c4a2ae7884349e539b0b5565f2c
MD5 cea24baf9ce5a3502d287d3049edec80
BLAKE2b-256 1809cf2adc623ebc02eac75c159f6e112a82e7893cffbf18d350a705acf0fe7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mipcandy-1.1.1a0-py3-none-any.whl:

Publisher: python-publish.yml on ProjectNeura/MIPCandy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page