rmsprop_op.cc 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#include "paddle/operators/rmsprop_op.h"

namespace paddle {
namespace operators {

class RmspropOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

 protected:
  void InferShape(framework::InferShapeContextBase *ctx) const override {
    PADDLE_ENFORCE(ctx->HasInput("Param"),
K
Kavya Srinet 已提交
27
                   "Input(Param) of RmspropOp should not be null.");
28
    PADDLE_ENFORCE(ctx->HasInput("Grad"),
K
Kavya Srinet 已提交
29
                   "Input(Grad) of RmspropOp should not be null.");
30
    PADDLE_ENFORCE(ctx->HasInput("Moment"),
K
Kavya Srinet 已提交
31 32 33
                   "Input(Moment) of RmspropOp should not be null.");
    PADDLE_ENFORCE(ctx->HasInput("LearningRate"),
                   "Input(LearningRate) of RmspropOp should not be null.");
34 35 36 37 38 39 40 41 42 43 44 45 46 47

    PADDLE_ENFORCE(ctx->HasOutput("ParamOut"),
                   "Output(param_out) of RmspropOp should not be null.");
    PADDLE_ENFORCE(ctx->HasOutput("MomentOut"),
                   "Output(moment_out) of RmspropOp should not be null.");

    auto param_dim = ctx->GetInputDim("Param");
    PADDLE_ENFORCE_EQ(
        param_dim, ctx->GetInputDim("Grad"),
        "Param and grad input of RmspropOp should have the same dimension.");
    PADDLE_ENFORCE_EQ(
        param_dim, ctx->GetInputDim("Moment"),
        "Param and moment input of RmspropOp should have the same dimension.");

K
Kavya Srinet 已提交
48 49 50 51
    auto lr_dim = ctx->GetInputDim("LearningRate");
    PADDLE_ENFORCE_EQ(framework::product(lr_dim), 1,
                      "Learning Rate should be a scalar.");

52 53 54 55 56 57 58 59 60 61 62 63 64
    ctx->SetOutputDim("ParamOut", param_dim);
    ctx->SetOutputDim("MomentOut", param_dim);
  }
};

class RmspropOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  RmspropOpMaker(framework::OpProto *proto,
                 framework::OpAttrChecker *op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
    AddInput("Param", "Input parameter");
    AddInput("Grad", "Input gradient");
    AddInput("Moment", "Second moment");
K
Kavya Srinet 已提交
65
    AddInput("LearningRate", "Learning Rate");
66 67 68 69 70 71 72 73 74 75 76

    AddOutput("ParamOut", "Output parameter");
    AddOutput("MomentOut", "Output second moment");

    AddAttr<float>("epsilon", "Constant for numerical stability");
    AddAttr<float>("decayRate", "Decay rate for moving average of gradients");
    AddComment(R"DOC(

RMSprop

MomentOut = decayRate * Moment + (1 - decayRate) * Grad * Grad
K
Kavya Srinet 已提交
77
ParamOut = Param - LearningRate * Grad / (sqrt(MomentOut) + epsilon)
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93

The original slide(Slide 29 of
http://www.cs.toronto.edu/~tijmen/csc321/slides/lecture_slides_lec6.pdf)
does not have the epsilon attribute. It is added here for numerical stability
to avoid division by zero.

)DOC");
  }
};
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
REGISTER_OP_WITHOUT_GRADIENT(rmsprop, ops::RmspropOp, ops::RmspropOpMaker);
REGISTER_OP_CPU_KERNEL(rmsprop,
                       ops::RmspropOpKernel<paddle::platform::CPUPlace, float>);