mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* add codespell pre-commit hook and fix typos * Update mmseg/models/decode_heads/dpt_head.py * Update mmseg/models/backbones/vit.py * Update mmseg/models/backbones/vit.py * fix typos * skip formating typo * deprecate formating * skip ipynb * unstage ipynb changes * unstage ipynb changes * fix typos in ipynb * unstage ipynb changes
10 lines
301 B
Python
10 lines
301 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
# flake8: noqa
|
|
import warnings
|
|
|
|
from .formatting import *
|
|
|
|
warnings.warn('DeprecationWarning: mmseg.datasets.pipelines.formating will be '
|
|
'deprecated in 2021, please replace it with '
|
|
'mmseg.datasets.pipelines.formatting.')
|