/* Copyright 2015 The TensorFlow 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. ==============================================================================*/ #ifndef TENSORFLOW_CORE_KERNELS_XENT_OP_H_ #define TENSORFLOW_CORE_KERNELS_XENT_OP_H_ // Functor definition for XentOp, must be compilable by nvcc. #include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/tensor_types.h" namespace tensorflow { namespace functor { // Functor used by XentOp to do the computations. template struct XentFunctor { // Computes Cross Entropy loss and backprop. // // logits: batch_size, num_classes. // labels: batch_size, num_classes. // scratch: temporary tensor, dims: batch_size, 1 // loss: output tensor for the loss, dims: batch_size. // backprop: output tensor for the backprop, dims: batch_size, num_classes. void operator()(const Device &d, const Eigen::DSizes &shape, const Eigen::array &logits_bcast, const Eigen::array &labels_bcast, typename TTypes::ConstMatrix logits, typename TTypes::ConstMatrix labels, typename TTypes::Matrix scratch, typename TTypes::Vec loss, typename TTypes::Matrix backprop); }; // Eigen code implementing XentFunctor::operator(). // This code works for both CPU and GPU and is used by the functor // specializations for both device types. template struct XentEigenImpl { static void Compute(const Device &d, const Eigen::DSizes &shape, const Eigen::array &logits_bcast, const Eigen::array &labels_bcast, typename TTypes::ConstMatrix logits, typename TTypes::ConstMatrix labels, typename TTypes::Matrix scratch, typename TTypes::Vec loss, typename TTypes::Matrix backprop) { // NOTE(touts): This duplicates some of the computations in softmax_op // because we need the intermediate (logits -max(logits)) values to // avoid a log(exp()) in the computation of the loss. const int kBatchDim = 0; const int kClassDim = 1; const int batch_size = shape[kBatchDim]; const int num_classes = shape[kClassDim]; // These arrays are used to reduce along the class dimension, and broadcast // the resulting value to all classes. #if !defined(EIGEN_HAS_INDEX_LIST) Eigen::array along_class; along_class[0] = kClassDim; Eigen::array batch_only; batch_only[0] = batch_size; Eigen::array batch_by_one; batch_by_one[0] = batch_size; batch_by_one[1] = 1; Eigen::array one_by_class; one_by_class[0] = 1; one_by_class[1] = num_classes; #else Eigen::IndexList > along_class; Eigen::IndexList > batch_by_one; batch_by_one.set(0, batch_size); Eigen::IndexList batch_only; batch_only.set(0, batch_size); Eigen::IndexList, int> one_by_class; one_by_class.set(1, num_classes); #endif // max_logits along classes. scratch.reshape(batch_only).device(d) = logits.broadcast(logits_bcast).maximum(along_class); // logits - max_logits. backprop.device(d) = logits.broadcast(logits_bcast) - scratch.broadcast(one_by_class); // sum(exp(logits - max_logits)) along classes. scratch.reshape(batch_only).device(d) = backprop.exp().sum(along_class); // NOTE(keveman): Eigen on GPU dispatches to an optimized implementation // for an expression of the form lhs = rhs.sum(). // lhs = -rhs.sum() doesn't match the above pattern, so folding in the // negation before calling sum(). // sum(-labels * // ((logits - max_logits) - log(sum(exp(logits - max_logits))))) // along classes loss.device(d) = (labels.broadcast(labels_bcast) * (scratch.log().eval().broadcast(one_by_class) - backprop)) .eval() .sum(along_class); // backprop: prob - labels, where // prob = exp(logits - max_logits) / sum(exp(logits - max_logits)) backprop.device(d) = (backprop.exp() / scratch.broadcast(one_by_class)) - labels.broadcast(labels_bcast); } }; } // namespace functor } // namespace tensorflow #endif // TENSORFLOW_CORE_KERNELS_XENT_OP_H_