This is a collection of Deep Learning semantic segmentation models to use for specific tasks, namely medical images, cells, histological data and related.
The models here presented are just two, namely the U-Net and the MultiResUNet. These models have been a very good application of Fully Convolutional Networks to the medical image segmentation task, and are very well suited for it.
Everything is implemented with TensorFlow 2.0, using the newly acquired Keras API within TensorFlow. This allows for the flexibility and completeness of using the full TensorFlow library while still having very good scripting capabilities with Keras.
There are several ways to install this package.
The easiest way to install this package is using pip
with the following command
pip install segmed
although it is highly encouraged to do this inside a virtual environment.
If using Colaboratory then this is the preferred way to use the package.
IMPORTANT: When using Colaboratory one must always install TensorFlow 2.0
first and then install segmed
,
i.e. this package, using the following commands in a cell within a Colaboratory notebook:
!pip install --upgrade pip
!pip install segmed
!pip install --upgrade tensorflow
poetry
is supported, by following the
installation instructions to get poetry
installed, the following
command should install segmed
in a virtual environment:
# clone the repository
git clone https://github.com/DCI-NET/segmed
# run poetry and install
poetry install
poetry
is a next-gen dependecy manager and makes everything a lot easier.
This package also comes with a conda environment for those that use the Anaconda distribution.
To install the environment make sure you have conda installed, then run the following
conda env create -f segmed_env.yml
this should ask you to confirm the installation, say yes and proceed with the installation. After that, activate the newly created environment
conda activate segmed
and now you are ready to run the code within this repository.
This repository has some unit tests available that should be running constantly in the background, and the status of the current code build is displayed in the badge above (the one right to the title).
One can manually run the tests, too. You can download this repository with git
like so:
git clone https://github.com/DCI-NET/segmed.git
Then, you install pytest and just run the following command
pytest
and the test suite should start running, with a few import and API warnings, but everything should pass if the badge above says passing in green.
This repository also has some (very) barebones examples of how to use these models.
However, they were run in a local machine and most of the data cannot be used.
These examples should be used as a tutorial for the package,
just to have a basic idea of how to run and create an image segmentation pipeline with segmed
,
but you will not be able to rerun the notebooks.
The reason for this is that most of the datasets are very large, so they cannot be bundled with this repository; some other datasets cannot be redistributed as per request of the original authors.
Either way, all of the trained models and weights are freely available upon request.
For completeness, here is a simple example. Assuming you have followed the instructions and everything is installed correctly, you can do the following to train a simple U-Net model:
from segmed.train import train_unet
from segmed.models import Unet
# Define some example hyperparameters
batch_size = 8
epochs = 50
steps_per_epoch=100
# Declare the paths to use (following the Keras convention)
# https://www.tensorflow.org/versions/r2.0/api_docs/python/tf/keras/Model#fit_generator
data_path = "general/path/to/images"
img_path = data_path + "augmented/images/path"
masks_path = data_path + "augmented/masks/path"
model_file = "path/to/save/model/unet_model.h5"
# Create a Unet (custom) model with a regularizer and
# batch normalization
custom_params = {
"activation": "relu",
"padding": "same",
"batch_norm": True,
"l2_reg": 0.995
}
model = Unet(variant="custom", parameters=custom_params)
# Train the model!
history = train_unet(
model,
img_path,
masks_path,
batch_size=batch_size,
epochs=epochs,
steps_per_epoch=steps_per_epoch,
model_file=model_file,
)
Now, the training should have started and you're good to go!
The datasets employed in some of the parts of this repository are the following: