返回排行榜

qubvel-org/segmentation_models.pytorch

Pythonsmp.readthedocs.io

Semantic segmentation models with 500+ pretrained convolutional and transformer-based backbones.

segmentationimage-processingpspnetunetunet-pytorchpytorchfpnmodelsimagenetsemantic-segmentationimage-segmentationsegmentation-models
Star 增长趋势
Star
11.7k
Forks
1.8k
周增长
Issues
70
5k10k
2019年3月2021年8月2024年2月2026年7月
制品库PyPIpip install segmentation_models.pytorch
README

logo
Python library with Neural Networks for Image Semantic
Segmentation based on PyTorch.

GitHub Workflow Status (branch) Codecov Read the Docs
PyPI PyTorch - Version Python - Version
Generic badge PyPI - Downloads

The main features of the library are:

  • Super simple high-level API (just two lines to create a neural network)
  • 12 encoder-decoder model architectures (Unet, Unet++, Segformer, DPT, ...)
  • 800+ pretrained convolution- and transform-based encoders, including timm support
  • Popular metrics and losses for training routines (Dice, Jaccard, Tversky, ...)
  • ONNX export and torch script/trace/compile friendly
Sponsored by withoutBG

withoutBG is a high-quality background removal tool. They built their open-source image matting and refiner models using smp.Unet and are proudly sponsoring this project.

📚 Project Documentation 📚

Visit Read The Docs Project Page or read the following README to know more about Segmentation Models Pytorch (SMP for short) library

📋 Table of content

  1. Quick start
  2. Examples
  3. Models and encoders
  4. Models API
    1. Input channels
    2. Auxiliary classification output
    3. Depth
  5. Installation
  6. Competitions won with the library
  7. Contributing
  8. Citing
  9. License

⏳ Quick start

1. Create your first Segmentation model with SMP

The segmentation model is just a PyTorch torch.nn.Module, which can be created as easy as:

import segmentation_models_pytorch as smp

model = smp.Unet(
    encoder_name="resnet34",        # choose encoder, e.g. mobilenet_v2 or efficientnet-b7
    encoder_weights="imagenet",     # use `imagenet` pre-trained weights for encoder initialization
    in_channels=1,                  # model input channels (1 for gray-scale images, 3 for RGB, etc.)
    classes=3,                      # model output channels (number of classes in your dataset)
)
  • see table with available model architectures
  • see table with available encoders and their corresponding weights

2. Configure data preprocessing

All encoders have pretrained weights. Preparing your data the same way as during weights pre-training may give you better results (higher metric score and faster convergence). It is not necessary in case you train the whole model, not only the decoder.

from segmentation_models_pytorch.encoders import get_preprocessing_fn

preprocess_input = get_preprocessing_fn('resnet18', pretrained='imagenet')

Congratulations! You are done! Now you can train your model with your favorite framework!

💡 Examples

Name Link Colab
Train pets binary segmentation on OxfordPets Notebook Open In Colab
Train cars binary segmentation on CamVid Notebook Open In Colab
Train multiclass segmentation on CamVid Notebook Open In Colab
Train clothes binary segmentation by @ternaus Repo
Load and inference pretrained Segformer Notebook Open In Colab
Load and inference pretrained DPT Notebook Open In Colab
Load and inference pretrained UPerNet Notebook Open In Colab
Save and load models locally / to HuggingFace Hub Notebook Open In Colab
Export trained model to ONNX Notebook Open In Colab

📦 Models and encoders

Architectures

Architecture Paper Documentation Checkpoints
Unet paper docs
Unet++ paper docs
MAnet paper docs
Linknet paper docs
FPN paper docs
PSPNet paper docs
PAN paper docs
DeepLabV3 paper docs
DeepLabV3+ paper docs
UPerNet paper docs checkpoints
Segformer paper docs checkpoints
DPT paper docs checkpoints

Encoders

The library provides a wide range of pretrained encoders (also known as backbones) for segmentation models. Instead of using features from the final layer of a classification model, we extract intermediate features and feed them into the decoder for segmentation tasks.

All encoders come with pretrained weights, which help achieve faster and more stable convergence when training segmentation models.

Given the extensive selection of supported encoders, you can choose the best one for your specific use case, for example:

  • Lightweight encoders for low-latency applications or real-time inference on edge devices (mobilenet/mobileone).
  • High-capacity architectures for complex tasks involving a large number of segmented classes, providing superior accuracy (convnext/swin/mit).

By selecting the right encoder, you can balance efficiency, performance, and model complexity to suit your project needs.

All encoders and corresponding pretrained weight are listed in the documentation:

  • table with natively ported encoders
  • table with timm encoders supported

🔁 Models API

Input channels

The input channels parameter allows you to create a model that can process a tensor with an arbitrary number of channels. If you use pretrained weights from ImageNet, the weights of the first convolution will be reused:

  • For the 1-channel case, it would be a sum of the weights of the first convolution layer.
  • Otherwise, channels would be populated with weights like new_weight[:, i] = pretrained_weight[:, i % 3], and then scaled with new_weight * 3 / new_in_channels.
model = smp.FPN('resnet34', in_channels=1)
mask = model(torch.ones([1, 1, 64, 64]))

Auxiliary classification output

All models support aux_params parameters, which is default set to None. If aux_params = None then classification auxiliary output is not created, else model produce not only mask, but also label output with shape NC. Classification head consists of GlobalPooling->Dropout(optional)->Linear->Activation(optional) layers, which can be configured by aux_params as follows:

aux_params=dict(
    pooling='avg',             # one of 'avg', 'max'
    dropout=0.5,               # dropout ratio, default is None
    activation='sigmoid',      # activation function, default is None
    classes=4,                 # define number of output labels
)
model = smp.Unet('resnet34', classes=4, aux_params=aux_params)
mask, label = model(x)

Depth

Depth parameter specify a number of downsampling operations in encoder, so you can make your model lighter if specify smaller depth.

model = smp.Unet('resnet34', encoder_depth=4)

🛠 Installation

PyPI version:

$ pip install segmentation-models-pytorch

The latest version from GitHub:

$ pip install git+https://github.com/qubvel/segmentation_models.pytorch

🏆 Competitions won with the library

Segmentation Models package is widely used in image segmentation competitions. Here you can find competitions, names of the winners and links to their solutions.

🛠 Projects built with SMP

🤝 Contributing

  1. Install SMP in dev mode
make install_dev  # Create .venv, install SMP in dev mode
  1. Run tests and code checks
make test          # Run tests suite with pytest
make fixup         # Ruff for formatting and lint checks
  1. Update a table (in case you added an encoder)
make table        # Generates a table with encoders and print to stdout

📝 Citing

@misc{Iakubovskii:2019,
  Author = {Pavel Iakubovskii},
  Title = {Segmentation Models Pytorch},
  Year = {2019},
  Publisher = {GitHub},
  Journal = {GitHub repository},
  Howpublished = {\url{https://github.com/qubvel/segmentation_models.pytorch}}
}

🛡️ License

The project is primarily distributed under MIT License, while some files are subject to other licenses. Please refer to LICENSES and license statements in each file for careful check, especially for commercial use.

相关仓库
WZMIAOMIAO/deep-learning-for-image-processing

deep learning for image processing including classification and object-detection etc.

PythonPyPIGNU General Public License v3.0pytorchtensorflow2
26.3k8.2k
albumentations-team/albumentations

Fast and flexible image augmentation library. Paper about the library: https://www.mdpi.com/2078-2489/11/2/125

PythonPyPIMIT Licenseimage-augmentationmachine-learning
albumentations.ai
15.3k1.7k
lexfridman/mit-deep-learning

Tutorials, assignments, and competitions for MIT Deep Learning related courses.

Jupyter NotebookMIT Licensedeep-learningmit
deeplearning.mit.edu
10.4k2.2k
dusty-nv/jetson-inference

Hello AI World guide to deploying deep-learning inference networks and deep vision primitives with TensorRT and NVIDIA Jetson.

C++MIT Licensedeep-learninginference
developer.nvidia.com/embedded/twodaystoademo
8.9k3.1k
MIC-DKFZ/nnUNet

PythonPyPIApache License 2.0segmentation
8.7k2.4k
mikel-brostrom/boxmot

BoxMOT: Pluggable python and c++ SOTA multi-object tracking modules with support for axis-aligned and oriented bounding boxes

PythonPyPIGNU Affero General Public License v3.0strongsortbytetrack
mikel-brostrom.github.io/boxmot/
8.2k1.9k
utkuozbulak/pytorch-cnn-visualizations

Pytorch implementation of convolutional neural network visualization techniques

PythonPyPIMIT Licensegrad-camcam
8.2k1.5k
PaddlePaddle/PaddleX

All-in-One Development Tool based on PaddlePaddle

PythonPyPIApache License 2.0classificationsegmentation
paddlepaddle.github.io/PaddleX/
6.2k1.2k
charlesq34/pointnet

PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation

PythonPyPIOtherpoint-cloudclassification
5.4k1.5k
zhixuhao/unet

unet for image segmentation

Jupyter NotebookMIT Licenseunetkeras
4.9k2k
qubvel/segmentation_models

Segmentation models with pretrained backbones. Keras and TensorFlow Keras.

PythonPyPIMIT Licenseunetfpn
4.9k1k
yanx27/Pointnet_Pointnet2_pytorch

PointNet and PointNet++ implemented by pytorch (pure python) and on ModelNet, ShapeNet and S3DIS.

PythonPyPIMIT Licensepointnetpointnet2
4.9k1k