OpenMMLab Semantic Segmentation Toolbox and Benchmark.
 
 
 
Go to file
Siddharth Ancha 5d49918b3c
[Fix] Switch order of `reduce_zero_label` and applying `label_map` (#2500)
## Motivation

I want to fix a bug through this PR. The bug occurs when two options --
`reduce_zero_label=True`, and custom classes are used.
`reduce_zero_label` remaps the GT seg labels by remapping the zero-class
to 255 which is ignored. Conceptually, this should occur *before* the
`label_map` is applied, which maps *already reduced labels*. However,
currently, the `label_map` is applied before the zero label is reduced.

## Modification

The modification is simple:
- I've just interchanged the order of the two operations by moving 4
lines from bottom to top.
- I've added a test that passes when the fix is introduced, and fails on
the original `master` branch.

## BC-breaking (Optional)

I do not anticipate this change braking any backward-compatibility.

## Checklist

- [x] Pre-commit or other linting tools are used to fix the potential
lint issues.
  - _I've fixed all linting/pre-commit errors._
- [x] The modification is covered by complete unit tests. If not, please
add more unit test to ensure the correctness.
  - _I've added a unit test._ 
- [x] If the modification has potential influence on downstream
projects, this PR should be tested with downstream projects, like MMDet
or MMDet3D.
  - _I don't think this change affects MMDet or MMDet3D._
- [x] The documentation has been modified accordingly, like docstring or
example tutorials.
- _This change fixes an existing bug and doesn't require modifying any
documentation/docstring._
2023-01-19 15:01:40 +08:00
.circleci [Fix]Fix circile ci env (#2467) 2023-01-11 13:59:27 +08:00
.dev [Enhancement] .dev Python files updated to get better performance and syntax (#2020) 2022-09-14 16:05:40 +08:00
.github [Projects] Add 'Projects/' folder, and the first example project in 0.x (#2457) 2023-01-11 13:59:27 +08:00
configs Imagenet-s dataset for large-scale semantic segmentation (#2480) 2023-01-16 16:42:19 +08:00
demo [Fix] Fix no revert_sync_batchnorm in image_demo of master branch (#2489) 2023-01-16 15:40:29 +08:00
docker bump v0.30.0 (#2462) 2023-01-11 17:39:09 +08:00
docs Imagenet-s dataset for large-scale semantic segmentation (#2480) 2023-01-16 16:42:19 +08:00
mmseg [Fix] Switch order of `reduce_zero_label` and applying `label_map` (#2500) 2023-01-19 15:01:40 +08:00
projects [Projects] Add 'Projects/' folder, and the first example project in 0.x (#2457) 2023-01-11 13:59:27 +08:00
requirements [Enhancement] Modify MMCV version requirement (#1764) 2022-07-13 19:40:32 +08:00
resources Add mmseg2torchserve tool (#552) 2021-07-05 21:11:47 +08:00
tests [Fix] Switch order of `reduce_zero_label` and applying `label_map` (#2500) 2023-01-19 15:01:40 +08:00
tools [Feature] Add model ensemble tools (#2218) 2022-10-24 19:03:48 +08:00
.gitignore [Enhancement] Delete DS_Store file (#1549) 2022-05-04 19:49:23 +08:00
.owners.yml replace owner (#1717) 2022-06-27 19:15:23 +08:00
.pre-commit-config.yaml gitlab.com/pycqa/flake8 no longer exists (#2309) 2023-01-11 13:59:27 +08:00
.readthedocs.yml add more format for readthedocs (#742) 2021-07-31 17:05:05 +08:00
CITATION.cff Add MMSeg citation (#825) 2021-09-01 18:38:58 -07:00
LICENSE init commit 2020-07-10 02:39:01 +08:00
LICENSES.md [Fix] Fix typos in LISCENSES.md (#1702) 2022-06-24 10:59:53 +08:00
MANIFEST.in [Feature] support mim (#717) 2021-07-27 15:43:32 +08:00
README.md Imagenet-s dataset for large-scale semantic segmentation (#2480) 2023-01-16 16:42:19 +08:00
README_zh-CN.md bump v0.30.0 (#2462) 2023-01-11 17:39:09 +08:00
model-index.yml [Feature] Add PoolFormer (CVPR'2022) (#1537) 2022-10-01 12:54: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 Upgrade pre commit hooks master (#2155) 2022-10-08 16:29:12 +08:00
setup.py [Enhancement] .dev Python files updated to get better performance and syntax (#2020) 2022-09-14 16:05:40 +08:00

README.md

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.5+.

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.

What's New

💎 Stable version

v0.30.0 was released on 01/11/2023:

  • Add 'Projects/' folder, and the first example project
  • Support Delving into High-Quality Synthetic Face Occlusion Segmentation Datasets

Please refer to changelog.md for details and release history.

🌟 Preview of 1.x version

A brand new version of MMSegmentation v1.0.0rc3 was released in 12/31/2022:

  • Unifies interfaces of all components based on MMEngine.
  • Faster training and testing speed with complete support of mixed precision training.
  • Refactored and more flexible architecture.

Find more new features in 1.x branch. Issues and PRs are welcome!

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:

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

Benchmark and model zoo

Results and models are available in the model zoo.

Supported backbones:

Supported methods:

Supported datasets:

FAQ

Please refer to FAQ for frequently asked questions.

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.

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}
}

License

MMSegmentation is released under the Apache 2.0 license, while some specific features in this library are with other licenses. Please refer to LICENSES.md for the careful check, if you are using our code for commercial matters.

Projects in OpenMMLab

  • MMCV: OpenMMLab foundational library for computer vision.
  • MIM: MIM installs OpenMMLab packages.
  • MMClassification: OpenMMLab image classification toolbox and benchmark.
  • MMDetection: OpenMMLab detection toolbox and benchmark.
  • MMDetection3D: OpenMMLab's next-generation platform for general 3D object detection.
  • MMYOLO: OpenMMLab YOLO series toolbox and benchmark.
  • MMRotate: OpenMMLab rotated object detection toolbox and benchmark.
  • MMSegmentation: OpenMMLab semantic segmentation toolbox and benchmark.
  • MMOCR: OpenMMLab text detection, recognition, and understanding toolbox.
  • MMPose: OpenMMLab pose estimation toolbox and benchmark.
  • MMHuman3D: OpenMMLab 3D human parametric model toolbox and benchmark.
  • MMSelfSup: OpenMMLab self-supervised learning toolbox and benchmark.
  • MMRazor: OpenMMLab model compression toolbox and benchmark.
  • MMFewShot: OpenMMLab fewshot learning toolbox and benchmark.
  • MMAction2: OpenMMLab's next-generation action understanding toolbox and benchmark.
  • MMTracking: OpenMMLab video perception toolbox and benchmark.
  • MMFlow: OpenMMLab optical flow toolbox and benchmark.
  • MMEditing: OpenMMLab image and video editing toolbox.
  • MMGeneration: OpenMMLab image and video generative models toolbox.
  • MMDeploy: OpenMMLab Model Deployment Framework.