computervision-recipes/scenarios/segmentation
PatrickBue 6ab799e823 adding support for void label to unet segmentation 2021-08-18 12:52:11 -04:00
..
media Adding image segmentation 01 and 11 notebooks 2020-06-09 20:36:49 -04:00
01_training_introduction.ipynb adding support for void label to unet segmentation 2021-08-18 12:52:11 -04:00
11_exploring_hyperparameters.ipynb Adding image segmentation 01 and 11 notebooks 2020-06-09 20:36:49 -04:00
README.md Adding image segmentation 01 and 11 notebooks 2020-06-09 20:36:49 -04:00

README.md

Image segmentation

This directory provides examples and best practices for building image segmentation systems. Our goal is to enable the users to bring their own datasets and train a high-accuracy model easily and quickly.

Image segmentation example

Our implementation uses fastai's UNet model, where the CNN backbone (e.g. ResNet) is pre-trained on ImageNet and hence can be fine-tuned with only small amounts of annotated training examples. A good understanding of image classification concepts, while not necessary, is strongly recommended.

Notebooks

The following notebooks are provided:

Notebook name Description
01_training_introduction.ipynb Notebook to train and evaluate an image segmentation model.
11_exploring_hyperparameters.ipynb Finds optimal model parameters using grid search.

Contribution guidelines

See the contribution guidelines in the root folder.