mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
* support iSAID aerial dataset * Update and rename docs/dataset_prepare.md to 博士/dataset_prepare.md * Update dataset_prepare.md * fix typo * fix typo * fix typo * remove imgviz * fix wrong order in annotation name * upload models&logs * upload models&logs * add load_annotations * fix unittest coverage * fix unittest coverage * fix correct crop size in config * fix iSAID unit test * fix iSAID unit test * fix typos * fix wrong crop size in readme * use smaller figure as test data * add smaller dataset in test data * add blank in docs * use 0 bytes pseudo data * add footnote and comments for crop size * change iSAID to isaid and add default value in it * change iSAID to isaid in _base_ Co-authored-by: MengzhangLI <mcmong@pku.edu.cn>
12 lines
328 B
Python
12 lines
328 B
Python
_base_ = './deeplabv3plus_r50-d8_4x4_896x896_80k_isaid.py'
|
|
model = dict(
|
|
pretrained='open-mmlab://resnet18_v1c',
|
|
backbone=dict(depth=18),
|
|
decode_head=dict(
|
|
c1_in_channels=64,
|
|
c1_channels=12,
|
|
in_channels=512,
|
|
channels=128,
|
|
),
|
|
auxiliary_head=dict(in_channels=256, channels=64))
|