From 408f0e8352b0cdeda6c049fa8c79ee252a01db8e Mon Sep 17 00:00:00 2001 From: Vivek Pal Date: Thu, 6 Apr 2017 21:50:20 +0530 Subject: [PATCH] fixup! Rename RMSprop as RMSProp --- src/mlpack/core/optimizers/rmsprop/rmsprop_update.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mlpack/core/optimizers/rmsprop/rmsprop_update.hpp b/src/mlpack/core/optimizers/rmsprop/rmsprop_update.hpp index 5ca0a90034..b9a821a8c4 100644 --- a/src/mlpack/core/optimizers/rmsprop/rmsprop_update.hpp +++ b/src/mlpack/core/optimizers/rmsprop/rmsprop_update.hpp @@ -21,7 +21,7 @@ namespace mlpack { namespace optimization { /** - * RMS{rop is an optimizer that utilizes the magnitude of recent gradients to + * RMSProp is an optimizer that utilizes the magnitude of recent gradients to * normalize the gradients. In its basic form, given a step rate \f$ \gamma \f$ * and a decay term \f$ \alpha \f$ we perform the following updates: *