/* 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. */ #pragma once #include "paddle/framework/eigen.h" #include "paddle/framework/op_registry.h" namespace paddle { namespace operators { using Tensor = framework::Tensor; template using EigenVector = framework::EigenVector; template class LogLossKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto* loss_out = ctx.Output("Loss"); loss_out->mutable_data(ctx.GetPlace()); auto epsilon = static_cast(ctx.Attr("epsilon")); auto prediction = EigenVector::Flatten(*ctx.Input("Predicted")); auto label = EigenVector::Flatten(*ctx.Input("Labels")); auto loss = EigenVector::Flatten(*loss_out); auto& place = *ctx.template device_context().eigen_device(); loss.device(place) = (-(label * (prediction + epsilon).log()) - ((static_cast(1) - label) * (static_cast(1) - prediction + epsilon).log())); } }; template class LogLossGradKernel : public framework::OpKernel { public: void Compute(const framework::ExecutionContext& ctx) const override { auto epsilon = static_cast(ctx.Attr("epsilon")); auto prediction = EigenVector::Flatten(*ctx.Input("Predicted")); auto label = EigenVector::Flatten(*ctx.Input("Labels")); auto* dloss = ctx.Input(framework::GradVarName("Loss")); auto* dpred = ctx.Output(framework::GradVarName("Predicted")); auto dl = EigenVector::Flatten(*dloss); auto& place = *ctx.template device_context().eigen_device(); if (dpred) { dpred->mutable_data(ctx.GetPlace()); auto dx = framework::EigenVector::Flatten(*dpred); dx.device(place) = dl * (-(label / (prediction + epsilon)) + ((static_cast(1) - label) / (static_cast(1) - prediction + epsilon))); } } }; } // namespace operators } // namespace paddle