-
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
[Feature] Add ENet #1623
Conversation
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.
Good job, I will validate it and merge if the result is solid.
Cancel inheritance of optimizer parameters in ../_base_/cityscapes.yml.
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.
The code looks good to me. It needs to be further validated on the paddle-dev and on the validation set.
paddleseg/core/train.py
Outdated
@@ -314,7 +314,7 @@ def train(model, | |||
batch_start = time.time() | |||
|
|||
# Calculate flops. | |||
if local_rank == 0: | |||
if local_rank == 0 and model.__class__.__name__ != 'ENet': |
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.
No description provided.