cross_entropy.cc 2.5 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
2

L
Luo Tao 已提交
3 4 5
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
6

L
Luo Tao 已提交
7
    http://www.apache.org/licenses/LICENSE-2.0
8

L
Luo Tao 已提交
9 10 11 12 13
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. */
14

Y
Yi Wang 已提交
15
#include "paddle/fluid/operators/math/cross_entropy.h"
16 17 18 19 20 21 22 23 24 25 26

namespace paddle {
namespace operators {
namespace math {

using Tensor = framework::Tensor;
template <typename T, int MajorType = Eigen::RowMajor,
          typename IndexType = Eigen::DenseIndex>
using EigenMatrix = framework::EigenMatrix<T, MajorType, IndexType>;

template <typename T>
Q
QI JUN 已提交
27
class CrossEntropyFunctor<platform::CPUDeviceContext, T> {
28
 public:
Q
QI JUN 已提交
29
  void operator()(const platform::CPUDeviceContext& ctx, framework::Tensor* out,
Q
qijun 已提交
30
                  const framework::Tensor* prob,
31 32
                  const framework::Tensor* labels, const bool softLabel,
                  const int ignore_index) {
33 34 35 36 37 38
    const int batch_size = prob->dims()[0];
    if (softLabel) {
      auto in = EigenMatrix<T>::From(*prob);
      auto lbl = EigenMatrix<T>::From(*labels);
      auto loss = EigenMatrix<T>::From(*out);

Q
QI JUN 已提交
39
      loss.device(*ctx.eigen_device()) =
40 41 42 43 44 45 46 47
          -((lbl * in.log().unaryExpr(math::TolerableValue<T>()))
                .sum(Eigen::DSizes<int, 1>(1))
                .reshape(Eigen::DSizes<int, 2>(batch_size, 1)));
    } else {
      const int class_num = prob->dims()[1];
      const T* prob_data = prob->data<T>();
      T* loss_data = out->data<T>();

48
      const int64_t* label_data = labels->data<int64_t>();
49
      for (int i = 0; i < batch_size; ++i) {
50 51 52
        int lbl = label_data[i];
        PADDLE_ENFORCE_GE(lbl, 0);
        PADDLE_ENFORCE_LT(lbl, class_num);
53
        PADDLE_ENFORCE((lbl >= 0 && lbl < class_num) || lbl == ignore_index);
54
        int index = i * class_num + lbl;
55 56 57 58
        loss_data[i] =
            lbl == ignore_index
                ? 0
                : -math::TolerableValue<T>()(std::log(prob_data[index]));
59 60 61 62 63
      }
    }
  }
};

Q
QI JUN 已提交
64 65
template class CrossEntropyFunctor<platform::CPUDeviceContext, float>;
template class CrossEntropyFunctor<platform::CPUDeviceContext, double>;
66 67 68
}  // namespace math
}  // namespace operators
}  // namespace paddle