Skip to content

Commit

Permalink
--other=update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
xiexinch committed Aug 10, 2023
1 parent 9fdd021 commit f8226e8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions projects/pp_mobileseg/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@ Extensive experiments show that PP-MobileSeg achieves a superior params-accuracy
| PP-MobileSeg-Base | StrideFormer-Base | 80000 | 32 | 512x512 | 41.57% | 265.5 | 5.62 | [config](https://github.com/Yang-Changhui/mmsegmentation/tree/add_ppmobileseg/projects/pp_mobileseg/configs/pp_mobileseg) | [model](https://download.openmmlab.com/mmsegmentation/v0.5/pp_mobileseg/pp_mobileseg_mobilenetv3_2xb16_3rdparty-base_512x512-ade20k-f12b44f3.pth)\|[log](https://bj.bcebos.com/paddleseg/dygraph/ade20k/pp_mobileseg_base/train.log) |
| PP-MobileSeg-Tiny | StrideFormer-Tiny | 80000 | 32 | 512x512 | 36.39% | 215.3 | 1.61 | [config](https://github.com/Yang-Changhui/mmsegmentation/tree/add_ppmobileseg/projects/pp_mobileseg/configs/pp_mobileseg) | [model](https://download.openmmlab.com/mmsegmentation/v0.5/pp_mobileseg/pp_mobileseg_mobilenetv3_2xb16_3rdparty-tiny_512x512-ade20k-a351ebf5.pth)\|[log](https://bj.bcebos.com/paddleseg/dygraph/ade20k/pp_mobileseg_tiny/train.log) |

## Usage

Same as other models in MMsegmentation, you can run the following command to test the model at ${MMSEG_ROOT}:

```shell
./tools/dist_test.sh projects/pp_mobileseg/configs/pp_mobileseg/pp_mobileseg_mobilenetv3_2x16_80k_ade20k_512x512_base.py checkpoints/pp_mobileseg_mobilenetv3_2xb16_3rdparty-base_512x512-ade20k-f12b44f3.pth 8
```

## Citation

If you find our project useful in your research, please consider citing:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
'../_base_/models/pp_mobile.py', '../_base_/datasets/ade20k.py',
'../_base_/default_runtime.py', '../_base_/schedules/schedule_80k.py'
]
# the custom import path is determined by your workspace path (i.e., where you run the command from) # noqa
custom_imports = dict(
imports=[
'projects.pp_mobileseg.backbones', 'projects.pp_mobileseg.decode_head'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
'../_base_/models/pp_mobile.py', '../_base_/datasets/ade20k.py',
'../_base_/default_runtime.py', '../_base_/schedules/schedule_80k.py'
]
# the custom import path is determined by your workspace path (i.e., where you run the command from) # noqa
custom_imports = dict(
imports=[
'projects.pp_mobileseg.backbones', 'projects.pp_mobileseg.decode_head'
Expand Down

0 comments on commit f8226e8

Please sign in to comment.