Skip to content
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

Deep Residual Learning for Image Recognition paper availability #47

Closed
futurely opened this issue Dec 10, 2015 · 11 comments
Closed

Deep Residual Learning for Image Recognition paper availability #47

futurely opened this issue Dec 10, 2015 · 11 comments

Comments

@futurely
Copy link

@ShaoqingRen It is very exciting to know that your MSRA team have broken all the records on ImageNet classification, ImageNet detection, ImageNet localization, COCO detection, COCO segmentation and PASCAL VOC detection with large margins. Your achievements mark very significant milestones in the related areas. When and where will the ResNet paper [1] be released? Thanks a lot!

Sorry about that this question is not directly related to the project. I just can't wait to read the paper.

[1] "Deep Residual Learning for Image Recognition", Kaiming He, Xiangyu Zhang, Shaoqing Ren, Jian Sun. Tech Report 2015.

@ShaoqingRen
Copy link
Owner

The paper can be found in http://arxiv.org/abs/1512.03385.

@futurely
Copy link
Author

The new architecture is so simple to implement and the results are so strong that you might win the ICCV Best Paper Award (Marr Prize). It is certain that all types of deep neural network models will adopt residual learning and gain consistent performance improvements very soon.

Unfortunately, the paper did not mention the details of your segmentation algorithm. We will have to wait for another paper focus on that topic.

@n3011
Copy link

n3011 commented Dec 17, 2015

@ShaoqingRen any hint on implementing it using caffe? @futurely

@futurely
Copy link
Author

Several examples are available in MXNet, Keras and Lasagne. apache/mxnet#931

@futurely
Copy link
Author

@webmaven
Copy link

@futurely (and anyone else): is there a TensorFlow implementation?

@gcr
Copy link

gcr commented Jan 2, 2016

A warning: Quite a few of these implementations seem to be adding ReLU after every convolution layer. That doesn't seem right to me. If your building block is y = ReLU(f(x)) + x, then every layer will only increase y and never decrease y because one of the terms of the addition is constrained to be nonnegative.

The original paper only uses ReLU just after the addition y = ReLU(f(x) + x), and right after the first (but not the second) convolution layer.

@erogol
Copy link

erogol commented Feb 4, 2016

@gcr good point

@guiyang882
Copy link

I want to use tensorflow to complish the residual network of MSAR. Who can give me some code support ! Not the paper ! Thx!

@futurely
Copy link
Author

https://github.com/tensorflow/skflow/blob/master/examples/resnet.py

@ethanhe42
Copy link

The above residual network example of tensorflow has been moved here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants