Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Medical Open Network for AI (MONAI). Framework for deep learning in medical imaging: segmentation, classification, detection, registration. Supports DICOM, NIfTI, PNG. Built on PyTorch with GPU acceleration.
.claude/skills/mkurman-monai/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-08 | ✗→✓ | ▲ Improved | -29% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 63% | 0% |
| case-15 | ✗→✓ | ▲ Improved | -30% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 27% | 0% |
| case-02 | ✓→✓ | = Same ✓ | 34% | 0% |
MONAI is the standard PyTorch-based framework for medical imaging deep learning. Use it for segmentation, classification, registration, preprocessing, and training pipelines on DICOM, NIfTI, and other medical image formats.
bashuv pip install monai # optional extras as needed uv pip install monai[all]
MONAI gives you:
pythonimport torch from monai.networks.nets import UNet from monai.networks.layers import Norm model = UNet( spatial_dims=3, in_channels=1, out_channels=3, channels=(16, 32, 64, 128, 256), strides=(2, 2, 2, 2), num_res_units=2, norm=Norm.BATCH, ).cuda()
pythonfrom monai.transforms import ( Compose, LoadImaged, EnsureChannelFirstd, Spacingd, Orientationd, ScaleIntensityRanged, CropForegroundd, RandCropByPosNegLabeld, RandFlipd, EnsureTyped, ) train_transforms = Compose([ LoadImaged(keys=['image', 'label']), EnsureChannelFirstd(keys=['image', 'label']), Orientationd(keys=['image', 'label'], axcodes='RAS'), Spacingd(keys=['image', 'label'], pixdim=(1.5, 1.5, 2.0), mode=('bilinear', 'nearest')), ScaleIntensityRanged(keys=['image'], a_min=-200, a_max=300, b_min=0.0, b_max=1.0, clip=True), CropForegroundd(keys=['image', 'label'], source_key='image'), RandCropByPosNegLabeld(keys=['image', 'label'], label_key='label', spatial_size=(96, 96, 96), num_samples=4), RandFlipd(keys=['image', 'label'], prob=0.5, spatial_axis=0), EnsureTyped(keys=['image', 'label']), ])
pythonfrom monai.losses import DiceCELoss from monai.metrics import DiceMetric loss_fn = DiceCELoss(to_onehot_y=True, softmax=True) dice_metric = DiceMetric(include_background=False, reduction='mean')
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | pass→pass | 6,700 | 3,994 | -40% | 1 | 1 | 0% | 1,096 | 1,390 | +27% | 0 | 0 | — |
case-02 | pass→pass | 7,748 | 6,327 | -18% | 1 | 1 | 0% | 1,272 | 1,710 | +34% | 0 | 0 | — |
case-03 | pass→pass | 10,227 | 10,001 | -2% | 1 | 1 | 0% | 1,845 | 2,591 | +40% | 0 | 0 | — |
case-04 | pass→pass | 11,071 | 7,788 | -30% | 1 | 1 | 0% | 1,775 | 2,096 | +18% | 0 | 0 | — |
case-05 | pass→pass | 11,336 | 11,048 | -3% | 1 | 1 | 0% | 2,022 | 2,850 | +41% | 0 | 0 | — |
case-06 | pass→pass | 20,336 | 14,996 | -26% | 1 | 1 | 0% | 1,558 | 1,844 | +18% | 0 | 0 | — |
case-07 | pass→pass | 7,727 | 7,466 | -3% | 1 | 1 | 0% | 1,240 | 1,935 | +56% | 0 | 0 | — |
case-08 | fail→pass | 11,234 | 4,676 | -58% | 1 | 1 | 0% | 2,282 | 1,625 | -29% | 0 | 0 | — |
case-09 | fail→pass | 16,276 | 4,606 | -72% | 1 | 1 | 0% | 866 | 1,411 | +63% | 0 | 0 | — |
case-10 | pass→pass | 9,933 | 6,483 | -35% | 1 | 1 | 0% | 1,622 | 1,969 | +21% | 0 | 0 | — |
case-11 | pass→pass | 9,782 | 4,426 | -55% | 1 | 1 | 0% | 1,710 | 1,559 | -9% | 0 | 0 | — |
case-12 | pass→pass | 3,764 | 3,370 | -10% | 1 | 1 | 0% | 610 | 1,350 | +121% | 0 | 0 | — |
case-13 | fail→fail | 13,023 | 7,983 | -39% | 1 | 1 | 0% | 2,463 | 2,112 | -14% | 0 | 0 | — |
case-14 | pass→pass | 5,167 | 2,954 | -43% | 1 | 1 | 0% | 830 | 1,226 | +48% | 0 | 0 | — |
case-15 | fail→pass | 12,714 | 4,603 | -64% | 1 | 1 | 0% | 2,072 | 1,455 | -30% | 0 | 0 | — |
case-16 | pass→pass | 10,695 | 10,775 | +1% | 1 | 1 | 0% | 1,658 | 2,643 | +59% | 0 | 0 | — |
case-17 | pass→pass | 12,431 | 8,087 | -35% | 1 | 1 | 0% | 1,970 | 1,973 | +0% | 0 | 0 | — |
case-18 | pass→pass | 3,575 | 3,244 | -9% | 1 | 1 | 0% | 632 | 1,302 | +106% | 0 | 0 | — |
case-19 | pass→pass | 3,956 | 1,688 | -57% | 1 | 1 | 0% | 660 | 937 | +42% | 0 | 0 | — |
case-20 | pass→pass | 12,660 | 12,926 | +2% | 1 | 1 | 0% | 2,423 | 3,255 | +34% | 0 | 0 | — |
case-21 | pass→pass | 20,848 | 15,123 | -27% | 1 | 1 | 0% | 3,599 | 3,535 | -2% | 0 | 0 | — |
case-22 | pass→pass | 17,269 | 10,702 | -38% | 1 | 1 | 0% | 3,042 | 2,742 | -10% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 21 counted toward the lift figure. The other 1 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +14 percentage points is the difference between those two pass rates over the 21 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.