/* Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved. 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/fluid/operators/center_loss_op.h" #include #include namespace paddle { namespace operators { class CenterLossOp : public framework::OperatorWithKernel { public: CenterLossOp(const std::string &type, const framework::VariableNameMap &inputs, const framework::VariableNameMap &outputs, const framework::AttributeMap &attrs) : OperatorWithKernel(type, inputs, outputs, attrs) {} void InferShape(framework::InferShapeContext *ctx) const override { PADDLE_ENFORCE(ctx->HasInput("X"), "Input(X) of CenterLoss should not be null."); auto x_dims = ctx->GetInputDim("X"); PADDLE_ENFORCE(ctx->HasInput("CenterUpdateRate"), "Input(CenterUpdateRate) of CenterLoss should not be null."); PADDLE_ENFORCE(ctx->HasInput("Label"), "Input(Label) of CenterLoss should not be null."); PADDLE_ENFORCE(ctx->HasInput("Centers"), "Input(Centers) of CenterLoss should not be null."); PADDLE_ENFORCE( ctx->HasOutput("SampleCenterDiff"), "Output(SampleCenterDiff) of CenterLoss should not be null."); PADDLE_ENFORCE(ctx->HasOutput("Loss"), "Output(Loss) of CenterLoss should not be null."); PADDLE_ENFORCE( ctx->HasOutput("CentersOut"), "Output(CentersOut) of CenterLoss shared data with Centers."); ctx->SetOutputDim("SampleCenterDiff", {x_dims[0], product(x_dims) / x_dims[0]}); ctx->SetOutputDim("CentersOut", ctx->GetInputDim("Centers")); ctx->SetOutputDim("Loss", {x_dims[0], 1}); ctx->ShareLoD("X", /*->*/ "Loss"); } protected: framework::OpKernelType GetExpectedKernelType( const framework::ExecutionContext &ctx) const override { return framework::OpKernelType( OperatorWithKernel::IndicateVarDataType(ctx, "X"), ctx.device_context()); } }; class CenterLossOpMaker : public framework::OpProtoAndCheckerMaker { public: void Make() override { AddInput("X", "(Tensor) Input tensor of center_loss operator."); AddInput("Label", "(Tensor) Input tensor of center_loss operator."); AddInput("Centers", "(Tensor) Input tensor of center_loss operator."); AddInput("CenterUpdateRate", "(Tensor) Input tensor of center_loss operator."); AddOutput("CentersOut", "(Tensor) Input tensor of center_loss operator."); AddOutput("SampleCenterDiff", "(Tensor) output tensor of center_loss operator."); AddOutput("Loss", "(Tensor) Output tensor of center_loss operator."); AddAttr("cluster_num", "The output cluster num of the center_loss operator."); AddAttr("need_update", "whether need to update center info."); AddComment(R"DOC( **CenterLoss operator** implemention of the center loss function in the papper<>, equations in this implement is:loss = 1/2 * (x-y)^2 ,where x(X) means the deep feature(output of last hidden layer ) and y(Label) the target label )DOC"); } }; class CenterLossGradOp : public framework::OperatorWithKernel { public: using framework::OperatorWithKernel::OperatorWithKernel; void InferShape(framework::InferShapeContext *ctx) const override { PADDLE_ENFORCE(ctx->HasInput("SampleCenterDiff"), "Input(SampleCenterDiff) should not be null"); PADDLE_ENFORCE(ctx->HasInput(framework::GradVarName("Loss")), "Input(Loss) should not be null"); PADDLE_ENFORCE(ctx->HasOutput(framework::GradVarName("X")), "Output(X) should not be null"); auto x_dims = ctx->GetInputDim("X"); auto x_grad_name = framework::GradVarName("X"); if (ctx->HasOutput(x_grad_name)) { ctx->SetOutputDim(x_grad_name, x_dims); } } protected: framework::OpKernelType GetExpectedKernelType( const framework::ExecutionContext &ctx) const override { return framework::OpKernelType( OperatorWithKernel::IndicateVarDataType(ctx, "SampleCenterDiff"), ctx.device_context()); } }; template class CenterLossOpGradMaker : public framework::SingleGradOpMaker { public: using framework::SingleGradOpMaker::SingleGradOpMaker; protected: void Apply(GradOpPtr retv) const override { retv->SetType("center_loss_grad"); retv->SetInput(framework::GradVarName("Loss"), this->OutputGrad("Loss")); retv->SetInput("SampleCenterDiff", this->Output("SampleCenterDiff")); retv->SetInput("X", this->Input("X")); retv->SetOutput(framework::GradVarName("X"), this->InputGrad("X")); retv->SetAttrMap(this->Attrs()); } }; DECLARE_NO_NEED_BUFFER_VARS_INFERER(CenterLossGradNoNeedBufVarsInferer, "X"); } // namespace operators } // namespace paddle namespace ops = paddle::operators; using CPUCtx = paddle::platform::CPUDeviceContext; REGISTER_OPERATOR(center_loss, ops::CenterLossOp, ops::CenterLossOpMaker, ops::CenterLossOpGradMaker, ops::CenterLossOpGradMaker); REGISTER_OPERATOR(center_loss_grad, ops::CenterLossGradOp, ops::CenterLossGradNoNeedBufVarsInferer); REGISTER_OP_CPU_KERNEL(center_loss, ops::CenterLossKernel, ops::CenterLossKernel); REGISTER_OP_CPU_KERNEL(center_loss_grad, ops::CenterLossGradKernel, ops::CenterLossGradKernel);