sigmoid_cross_entropy_with_logits_op.h 2.9 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
/* 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 {

// Out = max(X, 0) - X * Labels + log(1 + exp(-abs(X)))
Q
QI JUN 已提交
23
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
24
class SigmoidCrossEntropyWithLogitsKernel : public framework::OpKernel<T> {
25 26 27
 public:
  void Compute(const framework::ExecutionContext &context) const override {
    const framework::Tensor *X = context.Input<framework::Tensor>("X");
28
    const framework::Tensor *Labels = context.Input<framework::Tensor>("Label");
29 30 31 32 33 34
    framework::Tensor *Out = context.Output<framework::Tensor>("Out");
    Out->mutable_data<T>(context.GetPlace());

    auto x = framework::EigenVector<T>::Flatten(*X);
    auto labels = framework::EigenVector<T>::Flatten(*Labels);
    auto out = framework::EigenVector<T>::Flatten(*Out);
Q
QI JUN 已提交
35
    auto &place = *context.device_context<DeviceContext>().eigen_device();
36 37 38 39 40 41 42 43 44 45 46 47 48

    // term1 = max(x, 0)
    auto term1 = x.cwiseMax(static_cast<T>(0));
    // term2 = x * labels
    auto term2 = x * labels;
    // term3 = log(1 + exp(-abs(x)))
    auto term3 = (static_cast<T>(1) + (-(x.abs())).exp()).log();

    out.device(place) = term1 - term2 + term3;
  }
};

// dX = sigmoid(X) - labels
Q
QI JUN 已提交
49
template <typename DeviceContext, typename T>
Y
Yu Yang 已提交
50
class SigmoidCrossEntropyWithLogitsGradKernel : public framework::OpKernel<T> {
51 52 53
 public:
  void Compute(const framework::ExecutionContext &context) const override {
    const framework::Tensor *X = context.Input<framework::Tensor>("X");
54
    const framework::Tensor *Labels = context.Input<framework::Tensor>("Label");
55 56 57 58 59 60 61 62 63 64
    const framework::Tensor *dOut =
        context.Input<framework::Tensor>(framework::GradVarName("Out"));
    framework::Tensor *dX =
        context.Output<framework::Tensor>(framework::GradVarName("X"));
    dX->mutable_data<T>(context.GetPlace());

    auto x = framework::EigenVector<T>::Flatten(*X);
    auto labels = framework::EigenVector<T>::Flatten(*Labels);
    auto dout = framework::EigenVector<T>::Flatten(*dOut);
    auto dx = framework::EigenVector<T>::Flatten(*dX);
Q
QI JUN 已提交
65 66
    auto &place =
        *context.template device_context<DeviceContext>().eigen_device();
67 68 69 70 71 72 73 74

    auto sigmoid_x = static_cast<T>(1) / (static_cast<T>(1) + (-x).exp());
    dx.device(place) = dout * (sigmoid_x - labels);
  }
};

}  // namespace operators
}  // namespace paddle