accuracy_op.cc 3.5 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. */

#include "paddle/operators/accuracy_op.h"

namespace paddle {
namespace operators {

class AccuracyOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;

24
  void InferShape(framework::InferShapeContext *ctx) const override {
武毅 已提交
25 26 27 28
    PADDLE_ENFORCE(ctx->HasInput("Out"),
                   "Input (Out) of accuracy op should not be null.");
    PADDLE_ENFORCE(ctx->HasInput("Indices"),
                   "Input (Indices) of accuracy op should not be null.");
Q
Qiao Longfei 已提交
29
    PADDLE_ENFORCE(ctx->HasInput("Label"),
武毅 已提交
30
                   "Input (Label) of accuracy op should not be null.");
Q
Qiao Longfei 已提交
31
    PADDLE_ENFORCE(ctx->HasOutput("Accuracy"),
武毅 已提交
32
                   "Output (Accuracy) of AccuracyOp should not be null.");
Q
Qiao Longfei 已提交
33

武毅 已提交
34
    auto inference_dim = ctx->GetInputDim("Out");
Q
Qiao Longfei 已提交
35
    auto label_dim = ctx->GetInputDim("Label");
武毅 已提交
36 37
    // Assume indices has same shape with infernece, because
    // it's the output of topk.
Q
Qiao Longfei 已提交
38

F
fengjiayi 已提交
39 40
    PADDLE_ENFORCE_EQ(label_dim.size(), 2, "label's rank must be 2.");
    PADDLE_ENFORCE_EQ(label_dim[1], 1, "label's second dimension must be 1");
Q
Qiao Longfei 已提交
41
    PADDLE_ENFORCE_EQ(inference_dim[0], label_dim[0],
武毅 已提交
42 43
                      "the inference tensor's num_rows must be"
                      " the same as label.");
武毅 已提交
44

Q
Qiao Longfei 已提交
45
    ctx->SetOutputDim("Accuracy", {1});
武毅 已提交
46 47 48 49 50 51 52 53
    ctx->ShareLoD("Out", /*->*/ "Accuracy");
  }

 protected:
  // IndicateDataType
  framework::DataType IndicateDataType(
      const framework::ExecutionContext &ctx) const override {
    return framework::ToDataType(ctx.Input<Tensor>("Out")->type());
武毅 已提交
54 55 56 57 58 59 60 61 62
  }
};

class AccuracyOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  AccuracyOpMaker(framework::OpProto *proto,
                  framework::OpAttrChecker *op_checker)
      : OpProtoAndCheckerMaker(proto, op_checker) {
    // TODO(typhoonzero): support both inference value and indices.
武毅 已提交
63 64
    AddInput("Out", "topk (inferences) the network output");
    AddInput("Indices", "topk (indices) the network output");
武毅 已提交
65 66 67 68
    AddInput("Label", "Label of the training data");
    // TODO(typhoonzero): AddInput("Weight", ...
    AddOutput("Accuracy", "The accuracy of current batch");

D
Fix bug  
dangqingqing 已提交
69 70
    AddComment(R"DOC(
Accuracy. It will print accuracy rate for classification.
武毅 已提交
71 72
The accuracy is:
..  math::
73 74
accuracy = \\frac{NumOfCorrectPredicts}{NumOfAllSamples})

武毅 已提交
75
Both the input `Out` and `Label` can carry the LoD (Level of Details)
76
information, or not. But the output only shares the LoD with input `Inference`.
D
Fix bug  
dangqingqing 已提交
77
)DOC");
武毅 已提交
78 79 80 81 82 83 84
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
F
fengjiayi 已提交
85 86
REGISTER_OPERATOR(accuracy, ops::AccuracyOp, ops::AccuracyOpMaker,
                  paddle::framework::EmptyGradOpMaker);
武毅 已提交
87 88 89 90 91
// FIXME(typhoonzero): types of T is for infernece data.
// label data is always int.
REGISTER_OP_CPU_KERNEL(accuracy,
                       ops::AccuracyKernel<paddle::platform::CPUPlace, float>,
                       ops::AccuracyKernel<paddle::platform::CPUPlace, double>);