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

Alex Graves's RMSprop (#48 reopened) #82

Merged
merged 3 commits into from
Jun 30, 2015

Conversation

muupan
Copy link
Member

@muupan muupan commented Jun 23, 2015

This PR adds a new optimizer, RMSpropGraves, which is an RMSprop variation proposed by Alex Graves in http://arxiv.org/abs/1308.0850 and used in some papers from Google DeepMind including http://www.nature.com/nature/journal/v518/n7540/abs/nature14236.html?lang=en and http://arxiv.org/abs/1410.5401.

(This PR is the same as #48 except for adding unit tests)

@okuta okuta added the cat:feature Implementation that introduces new interfaces. label Jun 24, 2015
@delta2323 delta2323 self-assigned this Jun 24, 2015
@delta2323
Copy link
Member

Thanks! I will check this PR again.

@muupan muupan force-pushed the rmsprop-graves branch 2 times, most recently from ba74c3c to a1be84f Compare June 29, 2015 05:59
import numpy

from chainer import cuda
from chainer import Optimizer
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coding style does not admit direct import of Classes (only modules are permitted). So please import chainer.optimizer instead of Optimizer.

@delta2323
Copy link
Member

I check the code. It looks OK except one import statement.

from chainer import Optimizer


class RMSpropGraves(Optimizer):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In response to the above comment, please fix here, too.

@muupan
Copy link
Member Author

muupan commented Jun 30, 2015

OK, I fixed the import sentence.

@delta2323
Copy link
Member

LGTM 👍

delta2323 added a commit that referenced this pull request Jun 30, 2015
Alex Graves's RMSprop (#48 reopened)
@delta2323 delta2323 merged commit 872d41d into chainer:master Jun 30, 2015
@okuta okuta modified the milestone: v1.1.0 Jul 7, 2015
okuta added a commit to okuta/chainer that referenced this pull request Jul 14, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cat:feature Implementation that introduces new interfaces.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants