sigmoid_cross_entropy_with_logits_op.h 2.8 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 23
/* 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)))
template <typename Place, typename T>
Y
Yu Yang 已提交
24
class SigmoidCrossEntropyWithLogitsKernel : public framework::OpKernel<T> {
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
 public:
  void Compute(const framework::ExecutionContext &context) const override {
    const framework::Tensor *X = context.Input<framework::Tensor>("X");
    const framework::Tensor *Labels =
        context.Input<framework::Tensor>("Labels");
    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);
    auto place = context.GetEigenDevice<Place>();

    // 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
template <typename Place, typename T>
Y
Yu Yang 已提交
51
class SigmoidCrossEntropyWithLogitsGradKernel : public framework::OpKernel<T> {
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
 public:
  void Compute(const framework::ExecutionContext &context) const override {
    const framework::Tensor *X = context.Input<framework::Tensor>("X");
    const framework::Tensor *Labels =
        context.Input<framework::Tensor>("Labels");
    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);
    auto place = context.GetEigenDevice<Place>();

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

}  // namespace operators
}  // namespace paddle