Skip to content

Commit d6475e3

Browse files
committed
Merge branch 'upstream_master' into v2.0
2 parents 19629ab + 2d8bfea commit d6475e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tutorials/finetune.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Take the finetuning process on Cityscapes Dataset as an example, the users need
1212

1313
## Inherit base configs
1414
To release the burdun and reduce bugs in writing the whole configs, MMDetection V2.0 support inheriting configs from multiple existing configs. To finetune a Mask RCNN model, the new config needs to inherit
15-
`_base_/models/mask_rcnn_r50_fpn.py` to build the basic structure of the model. To use the Cityscapes Dataset, the new config can also simply inherit `_base_/datasets/cityscapes_instance.py`. For runtime settins such as training schedules, the new config needs to inherit `_base_/default_runtime.py`. This configs are in the `configs` directory and the users can also choose to write the whole contents rather than use inheritance.
15+
`_base_/models/mask_rcnn_r50_fpn.py` to build the basic structure of the model. To use the Cityscapes Dataset, the new config can also simply inherit `_base_/datasets/cityscapes_instance.py`. For runtime settings such as training schedules, the new config needs to inherit `_base_/default_runtime.py`. This configs are in the `configs` directory and the users can also choose to write the whole contents rather than use inheritance.
1616

1717
```python
1818
_base_ = [

0 commit comments

Comments
 (0)