mmsegmentation/configs/fcn/fcn_d6_r50-d16_512x1024_80k_cityscapes.py
谢昕辰 0c31afe9eb
Support fcn dilate 6 (#400)
* Support fcn dilate 6

* Support dilate in FCNHead

* configs for cityscapse dataset

* add configs for pytorch pretrained model

* update README

* add fps test results

* add memory test results and links

* modify log names

* Update mmseg/models/decode_heads/fcn_head.py

Co-authored-by: Jerry Jiarui XU <xvjiarui0826@gmail.com>
2021-03-20 10:32:04 -07:00

9 lines
311 B
Python

_base_ = [
'../_base_/models/fcn_r50-d8.py', '../_base_/datasets/cityscapes.py',
'../_base_/default_runtime.py', '../_base_/schedules/schedule_80k.py'
]
model = dict(
backbone=dict(dilations=(1, 1, 1, 2), strides=(1, 2, 2, 1)),
decode_head=dict(dilation=6),
auxiliary_head=dict(dilation=6))