bpr_loss_op.h 4.1 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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
/* Copyright (c) 2016 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. */

#pragma once
#include "paddle/fluid/framework/eigen.h"
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/operators/math/math_function.h"
#include "paddle/fluid/platform/for_range.h"

namespace paddle {
namespace operators {

using Tensor = framework::Tensor;

template <typename T>
struct TolerableValue {
  HOSTDEVICE T operator()(const T& x) const {
    PADDLE_ASSERT(std::is_floating_point<T>::value);
    const T kApproInf = 1e20;
    if (x == INFINITY) return kApproInf;
    if (x == -INFINITY) return -kApproInf;
    return x;
  }
};

template <typename DeviceContext, typename T>
class BprLossOpKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto* x = ctx.Input<Tensor>("X");
42
    auto* label_pos = ctx.Input<Tensor>("LabelPos");
43 44 45 46 47
    auto* y = ctx.Output<Tensor>("Y");
    y->mutable_data<T>(ctx.GetPlace());
    int rank = x->dims().size();

    Tensor x_2d = framework::ReshapeToMatrix(*x, rank - 1);
48
    Tensor labels_Pos_2d = framework::ReshapeToMatrix(*label_pos, rank - 1);
49 50
    Tensor y_2d = framework::ReshapeToMatrix(*y, rank - 1);

51
    const framework::Tensor* logits = &x_2d;
52 53 54
    const framework::Tensor* labels_pos = &labels_Pos_2d;
    framework::Tensor* out = &y_2d;

55 56 57
    const int step_size = logits->dims()[0];
    const int class_num = logits->dims()[1];
    const T* logits_data = logits->data<T>();
58 59 60 61 62 63 64 65 66 67 68 69 70
    T* loss_data = out->data<T>();

    const int64_t* label_pos_data = labels_pos->data<int64_t>();
    for (int i = 0; i < step_size; ++i) {
      int lbl_pos = label_pos_data[i];
      PADDLE_ENFORCE_GE(lbl_pos, 0);
      PADDLE_ENFORCE_LT(lbl_pos, class_num);
      int index_pos = i * class_num + lbl_pos;
      T sum = static_cast<T>(0);
      for (int j = 0; j < class_num; j++) {
        if (j == lbl_pos) continue;
        int index_neg = i * class_num + j;
        sum += TolerableValue<T>()(-std::log(
71 72
            1.0f + TolerableValue<T>()(std::exp(logits_data[index_neg] -
                                                logits_data[index_pos]))));
73 74 75 76 77 78 79 80 81 82 83 84
      }
      loss_data[i] = -sum / (class_num - 1);
    }
  }
};

template <typename DeviceContext, typename T>
class BprLossGradientOpKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& ctx) const override {
    auto* x = ctx.Input<Tensor>("X");
    auto* dy = ctx.Input<Tensor>(framework::GradVarName("Y"));
85
    auto* label_pos = ctx.Input<Tensor>("LabelPos");
86 87
    auto* dx = ctx.Output<Tensor>(framework::GradVarName("X"));

88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
    const int step_size = x->dims()[0];
    const int num_classes_ = x->dims()[1];
    T* dx_ = dx->mutable_data<T>(ctx.GetPlace());
    const T* dy_ = dy->data<T>();
    const T* x_ = x->data<T>();
    const int64_t* label_pos_ = label_pos->data<int64_t>();

    for (size_t sample_id = 0; sample_id < step_size; sample_id++) {
      for (size_t x_offset = sample_id * num_classes_;
           x_offset < (sample_id + 1) * num_classes_; x_offset++) {
        dx_[x_offset] = static_cast<T>(0);
      }
      auto p_index = sample_id * num_classes_ + label_pos_[sample_id];
      for (size_t ni = 0; ni < num_classes_; ni++) {
        if (label_pos_[sample_id] == ni) continue;
        auto n_index = sample_id * num_classes_ + ni;
        auto grad_ =
            -dy_[sample_id] /
            ((num_classes_ - 1) *
             (1.0f + TolerableValue<T>()(std::exp(x_[p_index] - x_[n_index]))));
        dx_[p_index] += grad_;
        dx_[n_index] -= grad_;
      }
    }
112 113 114 115 116
  }
};

}  // namespace operators
}  // namespace paddle