forked from PaddlePaddle/PaddleSeg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Add ENet (PaddlePaddle#1623)
- Loading branch information
Showing
4 changed files
with
669 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# ENet: A Deep Neural Network Architecture forReal-Time Semantic Segmentation | ||
|
||
## Reference | ||
> Abhishek Chaurasia, Sangpil Kim, Eugenio Culurciello. "ENet: A Deep Neural Network Architecture for | ||
Real-Time Semantic Segmentation." arXiv preprint arXiv:1606.02147(2016). | ||
|
||
## Performance | ||
|
||
### Cityscapes | ||
|
||
| Model | Backbone | Resolution | Training Iters | mIoU | mIoU (flip) | mIoU (ms+flip) | Links | | ||
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:| | ||
|ENet|-|1024x512|80000|67.42%|68.11%|67.99%|[model](https://bj.bcebos.com/paddleseg/dygraph/cityscapes/bisenetv1_cityscapes_1024x512_160k/model.pdparams)\|[log](https://bj.bcebos.com/paddleseg/dygraph/cityscapes/bisenetv1_cityscapes_1024x512_160k/train.log)\|[vdl](https://paddlepaddle.org.cn/paddle/visualdl/service/app?id=5d57386cdfcdb6a6bcb5135af134a0f2)| | ||
| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
_base_: '../_base_/cityscapes.yml' | ||
batch_size: 8 | ||
|
||
train_dataset: | ||
type: Cityscapes | ||
dataset_root: data/cityscapes | ||
transforms: | ||
- type: RandomPaddingCrop | ||
crop_size: [1024, 512] | ||
- type: RandomDistort | ||
brightness_range: 0.4 | ||
contrast_range: 0.4 | ||
saturation_range: 0.4 | ||
- type: Normalize | ||
mode: train | ||
|
||
model: | ||
type: ENet | ||
num_classes: 19 | ||
pretrained: Null | ||
|
||
optimizer: | ||
_inherited_: False | ||
type: adam | ||
weight_decay: 0.0002 | ||
|
||
lr_scheduler: | ||
end_lr: 0 | ||
learning_rate: 0.001 | ||
power: 0.9 | ||
type: PolynomialDecay |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.