MedVision AI is building an assistive tool for radiologists to outline tumors in brain MRI scans. Manual segmentation is slow and variable across annotators, so the team wants a model that produces accurate pixel-level masks for review.
You are given a medical image segmentation dataset based on multi-modal brain MRI studies. Each study contains four aligned MRI sequences per patient and a pixel-wise tumor mask. The task is to predict a binary segmentation mask for tumor vs background.
| Feature Group | Count | Examples |
|---|---|---|
| Image channels | 4 | T1, T1ce, T2, FLAIR MRI sequences |
| Spatial dimensions | 240 x 240 | 2D slices extracted from 3D volumes |
| Labels | 1 | Binary mask: tumor (1), background (0) |
| Metadata | 3 | patient_id, slice_index, study_split |
A good solution should achieve strong overlap between predicted and true masks, with Dice score >= 0.82 on the held-out test set and stable performance across patients. The model should also avoid missing small tumor regions.