yuhuixu1993 / BNET

Batch Normalization with Enhanced Linear Transformation
53 stars 3 forks source link

Why is the backward for bn layer stopped after 60 epoch? #1

Closed developer0hye closed 3 years ago

developer0hye commented 3 years ago

https://github.com/yuhuixu1993/BNET/blob/5d0443c146ac1b66b52eee2491cdaad5c5e1fff6/classification/imagenet/train_imagenet.py#L217

Thanks for sharing your work!

Why is the backward for bn layer stopped after 60 epoch?

Is the way commonly used to improve performance?

yuhuixu1993 commented 3 years ago

https://github.com/yuhuixu1993/BNET/blob/5d0443c146ac1b66b52eee2491cdaad5c5e1fff6/classification/imagenet/train_imagenet.py#L217

Thanks for sharing your work!

Why is the backward for bn layer stopped after 60 epoch?

Is the way commonly used to improve performance?

Thank you for your interest of our work. We use it in the imagenet training to solve the overfit problem when the kernel size of BNET is as large as 5 or 7. It may not improve the performance of BNET-3 but BNET-5 and BNET-7 will be improved.

developer0hye commented 3 years ago

@yuhuixu1993 Thanks for your reply!

I am very interested in your work!

I want to design the lightweight backbone for object detection. I hope that this method helps to improve the performance!

developer0hye commented 3 years ago

@yuhuixu1993 Do you consider overfit problem in the object detection task using this method?

yuhuixu1993 commented 3 years ago

@yuhuixu1993 Do you consider overfit problem in the object detection task using this method?

When I used the pretrained model to finetune on ImageNet, I did not meet with the overfit problem. You can refer to the Loss image in my paper. And I did not try to train from scratch on COCO.

developer0hye commented 3 years ago

@yuhuixu1993 Thanks for your reply!

yuhuixu1993 commented 3 years ago

@yuhuixu1993 Thanks for your reply!

I am very interested in your work!

I want to design the lightweight backbone for object detection. I hope that this method helps to improve the performance!

I am very interested in your work! Any progress or problem please let me know!

developer0hye commented 3 years ago

@yuhuixu1993 Yes! You are so kind.

I have a plan to use the BNET-ResNet18 as the backbone of CenterNet!

It's my CenterNet-Implementation link.