-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Add ENet #1623
Merged
Merged
[Feature] Add ENet #1623
Changes from 14 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
2941032
Merge pull request #13 from PaddlePaddle/develop
ETTR123 9f4c1c1
add enet
ETTR123 e55e463
Update README.md
ETTR123 da9d984
Update README.md
ETTR123 ebb49d4
Update enet_cityscapes_1024x512_adam_0.002_80k.yml
ETTR123 f3330ce
update
ETTR123 59c7cfb
Merge branch 'develop' into addenet
ETTR123 7d6cd9a
Merge branch 'develop' into addenet
ETTR123 f691133
Update train.py
ETTR123 7c3f2d3
Merge branch 'develop' into addenet
shiyutang 483925d
Merge branch 'develop' into addenet
aigcliu 00b3ada
Update enet_cityscapes_1024x512_adam_0.002_80k.yml
ETTR123 7fdee74
Update enet_cityscapes_1024x512_adam_0.002_80k.yml
ETTR123 f519ceb
add Miou
ETTR123 50d5fa7
Update README.md
shiyutang 97becbf
Update train.py
shiyutang 78acede
trigger
shiyutang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,13 @@ | ||
# 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%|[]()|| |
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,32 @@ | ||
_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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this line can be removed on nightly build paddle-dev.