adadelta_op.cc 3.2 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

15 16 17 18
#include "paddle/fluid/framework/infershape_utils.h"
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/phi/core/infermeta_utils.h"
#include "paddle/phi/infermeta/multiary.h"
19 20 21 22 23 24 25 26

namespace paddle {
namespace operators {

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

D
dzhwinter 已提交
27 28
  framework::OpKernelType GetExpectedKernelType(
      const framework::ExecutionContext &ctx) const override {
29 30
    return framework::OpKernelType(
        OperatorWithKernel::IndicateVarDataType(ctx, "Param"), ctx.GetPlace());
D
dzhwinter 已提交
31
  }
32 33 34 35
};

class AdadeltaOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
36
  void Make() override {
37 38
    AddInput("Param", "(Tensor) Input parameter");
    AddInput("Grad", "(Tensor) Input gradient");
39
    AddInput("AvgSquaredGrad", "(Tensor) Input average of squared gradient");
40
    AddInput("AvgSquaredUpdate",
41
             "(Tensor) Input average of squared parameter updates");
42 43 44

    AddOutput("ParamOut", "(Tensor) Output parameter");
    AddOutput("AvgSquaredGradOut",
45
              "(Tensor) Output average of squared gradient");
46
    AddOutput("AvgSquaredUpdateOut",
47
              "(Tensor) Output average of squared parameter updates");
48 49 50 51 52 53 54 55 56 57

    AddAttr<float>("rho",
                   "(float, default 0.95) Exponential decay rate "
                   "for squared gradients.")
        .SetDefault(0.95f);
    AddAttr<float>("epsilon",
                   "(float, default 1.0e-6) Constant for "
                   "numerical stability")
        .SetDefault(1.0e-6f);
    AddComment(R"DOC(
58
Adadelta Optimizer.
59

60 61 62 63
Adadelta optimizer is implemented as explained in:
https://arxiv.org/abs/1212.5701
Adadelta is a per-dimension adaptive learning rate method used
for gradient descent.
64

65
Adadelta updates are as follows:
66

67 68 69 70 71 72
$$
avg\_squared\_grad\_out = \rho * avg\_squared\_grad + (1 - \rho) * grad * grad \\
param\_update =  - \sqrt{\frac{avg\_squared\_update + \epsilon}{avg\_squared\_grad\_out + \epsilon}} * grad \\
avg\_squared\_update\_out = \rho * avg\_squared\_update + (1 - \rho) * {param\_update}^2 \\
param\_out = param + param\_update
$$
73 74 75 76 77 78 79 80 81

)DOC");
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
82
namespace ops = paddle::operators;
83 84
DECLARE_INFER_SHAPE_FUNCTOR(adadelta,
                            AdadeltaInferMetaFunctor,
A
Aurelius84 已提交
85
                            PD_INFER_META(phi::AdadeltaInferMeta));
86
REGISTER_OPERATOR(
87 88 89
    adadelta,
    ops::AdadeltaOp,
    ops::AdadeltaOpMaker,
90 91 92
    paddle::framework::EmptyGradOpMaker<paddle::framework::OpDesc>,
    paddle::framework::EmptyGradOpMaker<paddle::imperative::OpBase>,
    AdadeltaInferMetaFunctor);