Skip to content

Commit 1bedfe3

Browse files
authored
Fixed training tricks (open-mmlab#26)
1 parent 1765c12 commit 1bedfe3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ Assume that you have already downloaded the checkpoints to the directory `checkp
132132
checkpoints/pspnet_r50-d8_512x1024_40k_cityscapes_20200605_003338-2966598c.pth \
133133
4 --out results.pkl --eval mIoU cityscapes
134134
```
135-
Note: There is some inconsistency between cityscapes mIoU and our mIoU. The reason is that cityscapes average each class with class size by default.
135+
Note: There is some gap (~0.1%) between cityscapes mIoU and our mIoU. The reason is that cityscapes average each class with class size by default.
136136
We use the simple version without average for all datasets.
137137

138138
5. Test PSPNet on cityscapes test split with 4 GPUs, and generate the png files to be submit to the official evaluation server.

docs/tutorials/training_tricks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ In semantic segmentation, some methods make the LR of heads larger than backbone
88

99
In MMSegmentation, you may add following lines to config to make the LR of heads 10 times of backbone.
1010
```python
11-
optimizer_config=dict(
11+
optimizer=dict(
1212
paramwise_cfg = dict(
1313
custom_keys={
1414
'head': dict(lr_mult=10.)}))

0 commit comments

Comments
 (0)