/* 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. */ #include "paddle/fluid/operators/math/cross_entropy.h" namespace paddle { namespace operators { namespace math { using Tensor = framework::Tensor; template using EigenMatrix = framework::EigenMatrix; template class CrossEntropyFunctor { public: void operator()(const platform::CPUDeviceContext& ctx, framework::Tensor* out, const framework::Tensor* prob, const framework::Tensor* labels, const bool softLabel, const int ignore_index, const int axis_dim) { const int batch_size = prob->dims()[0]; const int num_classes = prob->dims()[1]; const int num_remain = num_classes / axis_dim; Eigen::DSizes batch_axis_remain(batch_size, axis_dim, num_remain); if (softLabel) { auto in = EigenMatrix::From(*prob); auto lbl = EigenMatrix::From(*labels); auto loss = EigenMatrix::From(*out); loss.device(*ctx.eigen_device()) = -((lbl * in.log().unaryExpr(math::TolerableValue())) .reshape(batch_axis_remain) .sum(Eigen::DSizes(1))); } else { const T* prob_data = prob->data(); T* loss_data = out->data(); const int64_t* label_data = labels->data(); for (int i = 0; i < batch_size; ++i) { for (int j = 0; j < num_remain; j++) { int lbl = label_data[i * num_remain + j]; if (lbl != ignore_index) { PADDLE_ENFORCE_GE(lbl, 0, platform::errors::OutOfRange( "label value should >= 0 when label " "value(%f) not equal to ignore_index(%f)", lbl, ignore_index)); PADDLE_ENFORCE_LT( lbl, axis_dim, platform::errors::OutOfRange( "label value should less than the shape of axis dimension " "when label value(%f) not equal to ignore_index(%f), But " "received label value as %ld and shape of axis dimension " "is %d", lbl, ignore_index, lbl, axis_dim)); } int index = i * num_classes + lbl * num_remain + j; int loss_idx = i * num_remain + j; loss_data[loss_idx] = lbl == ignore_index ? 0 : -math::TolerableValue()(std::log(prob_data[index])); } } } } }; template class CrossEntropyFunctor; template class CrossEntropyFunctor; } // namespace math } // namespace operators } // namespace paddle