You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nitrain (formerly torchsample) is a framework-agnostic python library for sampling and augmenting medical images, training models on medical imaging datasets, and visualizing results in a medical imaging context.
The nitrain library is unique in that it makes training models as simple as possible by providing reasonable defaults and a high-level of abstraction. It also supports multiple frameworks - torch, tensorflow, and keras - with a goal to add even more.
Full examples of training medical imaging AI models using nitrain can be found at the Tutorials page. If you are interested more generally in medical imaging AI, check out Practical medical imaging AI techniques with Python (expected early 2025).
Quickstart
Here is an example of using nitrain to a semantic segmentation model that demonstrates much of the core functionality.
importnitrainasntfromnitrain.readersimportImageReader, ColumnReader# create dataset from folder of images + participants filedataset=nt.Dataset(inputs=ImageReader('sub-*/anat/*_T1w.nii.gz'),
outputs=ImageReader('sub-*/anat/*_aparc+aseg.nii.gz'),
transforms={
'inputs': tx.NormalizeIntensity(0,1),
('inputs', 'outputs'): tx.Resize((64,64,64))
},
base_dir='~/desktop/ds004711/')
# create loader with random transformsloader=nt.Loader(dataset,
images_per_batch=4,
sampler=nt.SliceSampler(batch_size=32, axis=2)
transforms={
'inputs': tx.RandomNoise(sd=0.2)
})
# create model from architecturearch_fn=nt.fetch_architecture('unet', dim=2)
model=arch_fn(input_image_size=(64,64,1),
mode='segmentation')
# create trainer and fit modeltrainer=nt.Trainer(model, task='segmentation')
trainer.fit(loader, epochs=100)
Installation
The latest release of nitrain can be installed from pypi:
pip install nitrain
Or you can install the latest development version directly from github:
The ants python package is a key dependency that allows you to efficiently read, operate on, and visualize medical images. Additionally, you can use keras (tf.keras or keras3), tensorflow, or pytorch as backend for creating your models.
Resources
The following links can be helpful in becoming more familiar with nitrain.
You can also visit the ANTsPy repo to learn more about handling medical images and performing traditional medical imaging analysis.
Contributing
If you have a question or bug report the best way to get help is by posting an issue on the GitHub page. I would be happy to welcome any new contributors or ideas to the project. If you want to add code, the best way to get started is by posting an issue or contacting me at nickcullen31@gmail.com.
You can support this work by starring the repository or posting a feature request in the issues tab. These actions help increase the project's impact and community reach.
About
Train AI models efficiently on medical images using any framework