[mlpack-git] master: Fix the name of the input parameter. (292420f)

gitdub at big.cc.gt.atl.ga.us gitdub at big.cc.gt.atl.ga.us
Wed Jun 24 13:50:17 EDT 2015


Repository : https://github.com/mlpack/mlpack

On branch  : master
Link       : https://github.com/mlpack/mlpack/compare/6e98f6d5e61ac0ca861f0a7c3ec966076eccc50e...7de290f191972dd41856b647249e2d24d2bf029d

>---------------------------------------------------------------

commit 292420f59ac5729de75cc40af6bca2c72e700d6e
Author: Marcus Edel <marcus.edel at fu-berlin.de>
Date:   Sun Jun 21 16:47:51 2015 +0200

    Fix the name of the input parameter.


>---------------------------------------------------------------

292420f59ac5729de75cc40af6bca2c72e700d6e
 src/mlpack/methods/ann/optimizer/rmsprop.hpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/mlpack/methods/ann/optimizer/rmsprop.hpp b/src/mlpack/methods/ann/optimizer/rmsprop.hpp
index c40aec3..d1b2a8c 100644
--- a/src/mlpack/methods/ann/optimizer/rmsprop.hpp
+++ b/src/mlpack/methods/ann/optimizer/rmsprop.hpp
@@ -104,8 +104,8 @@ class RMSPROP
    *
    * @param weights The weights that should be updated.
    * @param gradient The gradient used to update the weights.
-   * @param gradient The moving average over the root mean squared gradient used
-   *    to update the weights.
+   * @param meanSquaredGradient The moving average over the root mean squared
+   *    gradient used to update the weights.
    */
   template<typename eT>
   void Optimize(arma::Cube<eT>& weights,
@@ -121,8 +121,8 @@ class RMSPROP
    *
    * @param weights The weights that should be updated.
    * @param gradient The gradient used to update the weights.
-   * @param gradient The moving average over the root mean squared gradient used
-   *    to update the weights.
+   * @param meanSquaredGradient The moving average over the root mean squared
+   *    gradient used to update the weights.
    */
   template<typename eT>
   void Optimize(arma::Mat<eT>& weights,



More information about the mlpack-git mailing list