U-Nets for image segmentation with pre-trained backbones in PyTorch.
I was looking for an U-Net PyTorch implementation that can use pre-trained torchvision models as backbones in the encoder path. There is a great repo for this in Keras, but I didn't find a good PyTorch implementation that works with multiple torchvision models. So I decided to create one.
So far VGG, ResNet and DenseNet backbones have been implemented.
Installing package:
git clone https://github.com/mkisantal/backboned-unet.git
cd backboned-unet
pip install .