OpenMMLab Semantic Segmentation Toolbox and Benchmark.
 
 
 
Go to file
谢昕辰 737544f1c5
add configs for vit backbone plus decode_heads (#520)
* add config

* add cityscapes config

* add default value to docstring

* fix lint

* add deit-s and deit-b

* add readme

* add eps at norm_cfg

* add drop_path_rate experiment

* add deit case at init_weight

* add upernet result

* update result and add upernet 160k config

* update upernet result and fix settings

* Update iters number

* update result and delete some configs

* fix import error

* fix drop_path_rate

* update result and restore config

* update benchmark result

* remove cityscapes exp

* remove neck

* neck exp

* add more configs

* fix init error

* fix ffn setting

* update result

* update results

* update result

* update results and fill table

* delete or rename configs

* fix link delimiter

* rename configs and fix link

* rename neck to mln
2021-07-01 23:00:39 +08:00
.dev [Enhance] Migrate to MMCV DepthwiseSeparableConv (#158) 2020-09-25 19:56:10 +08:00
.github fix typos 2021-06-22 19:07:55 +08:00
configs add configs for vit backbone plus decode_heads (#520) 2021-07-01 23:00:39 +08:00
demo Add support for Pascal Context 59 classes (#459) 2021-04-19 21:20:54 -07:00
docker Add fixes to Dockerfile (#607) 2021-06-19 08:31:19 -07:00
docs fix typo and link (#608) 2021-06-18 11:58:55 -07:00
mmseg add configs for vit backbone plus decode_heads (#520) 2021-07-01 23:00:39 +08:00
requirements [Feature] support mim (#549) 2021-05-31 15:07:24 -07:00
resources init commit 2020-07-10 02:39:01 +08:00
tests add configs for vit backbone plus decode_heads (#520) 2021-07-01 23:00:39 +08:00
tools [Refactor]: Unified parameter initialization (#567) 2021-06-16 21:41:29 -07:00
.gitignore Auto get version info and git hash (#55) 2020-08-11 19:23:35 +08:00
.pre-commit-config.yaml [Improvement] Add markdown linter and fix linting errors (#171) 2020-10-07 19:50:16 +08:00
.readthedocs.yml Add Colab Tutorial (#7) 2020-07-10 16:55:47 +08:00
LICENSE init commit 2020-07-10 02:39:01 +08:00
MANIFEST.in [Feature] support mim (#549) 2021-05-31 15:07:24 -07:00
README.md [Fix] Add setr & vit msg. (#635) 2021-06-23 22:25:06 -07:00
README_zh-CN.md [Fix] Add setr & vit msg. (#635) 2021-06-23 22:25:06 -07:00
model-index.yml update metafiles (#661) 2021-07-01 22:31:00 +08:00
pytest.ini init commit 2020-07-10 02:39:01 +08:00
requirements.txt Add pypi deployment (#11) 2020-07-13 20:54:32 +08:00
setup.cfg add metric mFscore (#509) 2021-04-30 11:34:57 -07:00
setup.py [Feature] support mim (#549) 2021-05-31 15:07:24 -07:00

README.md


PyPI docs badge codecov license issue resolution open issues

Documentation: https://mmsegmentation.readthedocs.io/

English | 简体中文

Introduction

MMSegmentation is an open source semantic segmentation toolbox based on PyTorch. It is a part of the OpenMMLab project.

The master branch works with PyTorch 1.3+.

demo image

Major features

  • Unified Benchmark

    We provide a unified benchmark toolbox for various semantic segmentation methods.

  • Modular Design

    We decompose the semantic segmentation framework into different components and one can easily construct a customized semantic segmentation framework by combining different modules.

  • Support of multiple methods out of box

    The toolbox directly supports popular and contemporary semantic segmentation frameworks, e.g. PSPNet, DeepLabV3, PSANet, DeepLabV3+, etc.

  • High efficiency

    The training speed is faster than or comparable to other codebases.

License

This project is released under the Apache 2.0 license.

Changelog

v0.14.1 was released in 06/16/2021. Please refer to changelog.md for details and release history.

Benchmark and model zoo

Results and models are available in the model zoo.

Supported backbones:

Supported methods:

Installation

Please refer to get_started.md for installation and dataset_prepare.md for dataset preparation.

Get Started

Please see train.md and inference.md for the basic usage of MMSegmentation. There are also tutorials for customizing dataset, designing data pipeline, customizing modules, and customizing runtime. We also provide many training tricks.

A Colab tutorial is also provided. You may preview the notebook here or directly run on Colab.

Citation

If you find this project useful in your research, please consider cite:

@misc{mmseg2020,
    title={{MMSegmentation}: OpenMMLab Semantic Segmentation Toolbox and Benchmark},
    author={MMSegmentation Contributors},
    howpublished = {\url{https://github.com/open-mmlab/mmsegmentation}},
    year={2020}
}

Contributing

We appreciate all contributions to improve MMSegmentation. Please refer to CONTRIBUTING.md for the contributing guideline.

Acknowledgement

MMSegmentation is an open source project that welcome any contribution and feedback. We wish that the toolbox and benchmark could serve the growing research community by providing a flexible as well as standardized toolkit to reimplement existing methods and develop their own new semantic segmentation methods.

Projects in OpenMMLab

  • MMCV: OpenMMLab foundational library for computer vision.
  • MMClassification: OpenMMLab image classification toolbox and benchmark.
  • MMDetection: OpenMMLab detection toolbox and benchmark.
  • MMDetection3D: OpenMMLab's next-generation platform for general 3D object detection.
  • MMSegmentation: OpenMMLab semantic segmentation toolbox and benchmark.
  • MMAction2: OpenMMLab's next-generation action understanding toolbox and benchmark.
  • MMTracking: OpenMMLab video perception toolbox and benchmark.
  • MMPose: OpenMMLab pose estimation toolbox and benchmark.
  • MMEditing: OpenMMLab image and video editing toolbox.
  • MMOCR: A Comprehensive Toolbox for Text Detection, Recognition and Understanding.
  • MMGeneration: A powerful toolkit for generative models.