You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
3.5 KiB
100 lines
3.5 KiB
7 years ago
|
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
|
||
7 years ago
|
|
||
|
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. */
|
||
|
|
||
6 years ago
|
#include "paddle/fluid/operators/optimizers/momentum_op.h"
|
||
7 years ago
|
|
||
|
namespace paddle {
|
||
|
namespace operators {
|
||
|
|
||
7 years ago
|
using Tensor = framework::Tensor;
|
||
|
|
||
6 years ago
|
class MomentumOpInferVarType : public framework::VarTypeInference {
|
||
|
public:
|
||
|
void operator()(const framework::OpDesc& op_desc,
|
||
|
framework::BlockDesc* block) const override {
|
||
|
auto input_var = op_desc.Input("Param")[0];
|
||
|
for (auto& out_var : op_desc.Output("ParamOut")) {
|
||
|
if (block->FindRecursiveOrCreateVar(input_var).GetType() ==
|
||
|
framework::proto::VarType::SELECTED_ROWS) {
|
||
|
block->FindRecursiveOrCreateVar(out_var).SetType(
|
||
|
framework::proto::VarType::SELECTED_ROWS);
|
||
6 years ago
|
} else if (block->FindRecursiveOrCreateVar(input_var).GetType() ==
|
||
|
framework::proto::VarType::LOD_TENSOR) {
|
||
6 years ago
|
block->FindRecursiveOrCreateVar(out_var).SetType(
|
||
|
framework::proto::VarType::LOD_TENSOR);
|
||
6 years ago
|
} else {
|
||
|
PADDLE_THROW(
|
||
|
"Only support LodTensor and SelectedRows, Unexpected Input Type.");
|
||
6 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
7 years ago
|
class MomentumOpMaker : public framework::OpProtoAndCheckerMaker {
|
||
|
public:
|
||
7 years ago
|
void Make() override {
|
||
7 years ago
|
AddInput("Param",
|
||
|
"(Tensor, default Tensor<float>) "
|
||
|
"Input parameter that has to be updated");
|
||
|
AddInput("Grad",
|
||
|
"(Tensor, default Tensor<float>) "
|
||
|
"Input gradient of the parameter");
|
||
|
AddInput("Velocity",
|
||
|
"(Tensor, default Tensor<float>) "
|
||
|
"Input velocity (corresponding to the parameter) "
|
||
|
"that has to be updated");
|
||
|
AddInput("LearningRate",
|
||
|
"(Tensor, default Tensor<float>) "
|
||
|
"Input learning rate");
|
||
|
|
||
7 years ago
|
AddOutput("ParamOut",
|
||
|
"(Tensor) This output is updated parameter. "
|
||
|
"It shared memory with Input(Param).");
|
||
|
AddOutput("VelocityOut",
|
||
|
"(Tensor) This output is updated velocity. "
|
||
|
"It shared memory with Input(Velocity).");
|
||
7 years ago
|
|
||
|
AddAttr<float>("mu", "(float) Momentum coefficient");
|
||
7 years ago
|
AddAttr<bool>("use_nesterov",
|
||
7 years ago
|
"(bool, default false) "
|
||
|
"Use Nesterov Momentum")
|
||
7 years ago
|
.SetDefault(false);
|
||
7 years ago
|
AddComment(R"DOC(
|
||
7 years ago
|
Momentum Optimizer.
|
||
|
|
||
|
This optimizer has a flag for Nestrov Momentum.
|
||
|
The update equations are as follows:
|
||
|
|
||
|
$$
|
||
|
velocity = mu * velocity + gradient \\
|
||
|
if (use\_nesterov): \\
|
||
7 years ago
|
param = param - (gradient + mu * velocity) * learning\_rate \\
|
||
7 years ago
|
else: \\
|
||
|
param = param - learning\_rate * velocity. \\
|
||
|
$$
|
||
7 years ago
|
|
||
|
)DOC");
|
||
|
}
|
||
|
};
|
||
|
} // namespace operators
|
||
|
} // namespace paddle
|
||
|
|
||
|
namespace ops = paddle::operators;
|
||
6 years ago
|
REGISTER_OPERATOR(momentum, ops::MomentumOp, ops::MomentumOpMaker,
|
||
|
paddle::framework::EmptyGradOpMaker,
|
||
|
ops::MomentumOpInferVarType);
|
||
6 years ago
|
REGISTER_OP_CPU_KERNEL(
|
||
|
momentum, ops::MomentumOpKernel<paddle::platform::CPUDeviceContext, float>,
|
||
|
ops::MomentumOpKernel<paddle::platform::CPUDeviceContext, double>);
|