Skip to content

Commit fe14815

Browse files
authored
Update README.md
1 parent f65c200 commit fe14815

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ Pretrained DeepLabv3, DeepLabv3+ for Pascal VOC & Cityscapes.
55
## Quick Start
66

77
### 1. Available Architectures
8-
Specify the model architecture with '--model ARCH_NAME' and set the output stride using '--output_stride OUTPUT_STRIDE'.
9-
108
| DeepLabV3 | DeepLabV3+ |
119
| :---: | :---: |
1210
|deeplabv3_resnet50|deeplabv3plus_resnet50|
@@ -16,12 +14,15 @@ Specify the model architecture with '--model ARCH_NAME' and set the output strid
1614
|deeplabv3_hrnetv2_32 | deeplabv3plus_hrnetv2_32 |
1715
|deeplabv3_xception | deeplabv3plus_xception |
1816

17+
please refer to [network/modeling.py](https://github.com/VainF/DeepLabV3Plus-Pytorch/blob/master/network/modeling.py) for all model entries.
18+
1919
All pretrained models: [Dropbox](https://www.dropbox.com/sh/w3z9z8lqpi8b2w7/AAB0vkl4F5vy6HdIhmRCTKHSa?dl=0), [Tencent Weiyun](https://share.weiyun.com/qqx78Pv5)
2020

2121
Note: The HRNet backbone was contributed by @timothylimyl. A pre-trained backbone is available at [google drive](https://drive.google.com/file/d/1NxCK7Zgn5PmeS7W1jYLt5J9E0RRZ2oyF/view?usp=sharing).
2222

2323
### 2. Load the pretrained model:
2424
```python
25+
model =
2526
model.load_state_dict( torch.load( CKPT_PATH )['model_state'] )
2627
```
2728
### 3. Visualize segmentation outputs:

0 commit comments

Comments
 (0)