accuracy_op.cc 4.4 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
武毅 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

W
Wu Yi 已提交
15
#include "paddle/fluid/operators/metrics/accuracy_op.h"
武毅 已提交
16 17 18 19 20 21 22 23

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.");
D
Dong Zhihong 已提交
33 34
    PADDLE_ENFORCE(ctx->HasOutput("Correct"),
                   "Output (Correct) of AccuracyOp should not be null.");
D
Dong Zhihong 已提交
35 36
    PADDLE_ENFORCE(ctx->HasOutput("Total"),
                   "Output (Total) of AccuracyOp should not be null.");
Q
Qiao Longfei 已提交
37

武毅 已提交
38
    auto inference_dim = ctx->GetInputDim("Out");
Q
Qiao Longfei 已提交
39
    auto label_dim = ctx->GetInputDim("Label");
K
Kexin Zhao 已提交
40
    // Assume indices has same shape as inference, because
武毅 已提交
41
    // it's the output of topk.
Q
Qiao Longfei 已提交
42

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
    PADDLE_ENFORCE_EQ(
        label_dim.size(), 2,
        "ShapeError: label's dimensions of AccuracyOp must be 2. "
        "But received label's dimensions = %d, label's shape = [%s]",
        label_dim.size(), label_dim);
    PADDLE_INFERSHAPE_ENFORCE_EQ(
        ctx, label_dim[1], 1,
        "ShapeError: label's second dimension of "
        "AccuracyOp must be 1. But received label's "
        "second dimension is = %d, label's shape = [%s]",
        label_dim[1], label_dim);
    PADDLE_INFERSHAPE_ENFORCE_EQ(
        ctx, inference_dim[0], label_dim[0],
        "ShapeError: the output's num_rows of AccuracyOp must be"
        " the same as label's num_rows. But received output's "
        "shape = [%s], label's shape = [%s], output's num_rows = %d, label's "
        "num_rows = %d",
        inference_dim, label_dim, inference_dim[0], label_dim[0]);
武毅 已提交
61

Q
Qiao Longfei 已提交
62
    ctx->SetOutputDim("Accuracy", {1});
D
Dong Zhihong 已提交
63
    ctx->SetOutputDim("Correct", {1});
D
Dong Zhihong 已提交
64
    ctx->SetOutputDim("Total", {1});
武毅 已提交
65 66 67 68
    ctx->ShareLoD("Out", /*->*/ "Accuracy");
  }

 protected:
69
  framework::OpKernelType GetExpectedKernelType(
武毅 已提交
70
      const framework::ExecutionContext &ctx) const override {
71 72
    return framework::OpKernelType(
        OperatorWithKernel::IndicateVarDataType(ctx, "Out"), ctx.GetPlace());
武毅 已提交
73 74 75 76 77
  }
};

class AccuracyOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
Y
Yu Yang 已提交
78
  void Make() override {
武毅 已提交
79
    // TODO(typhoonzero): support both inference value and indices.
K
Kexin Zhao 已提交
80 81
    AddInput("Out", "The network output of topk (inferences)");
    AddInput("Indices", "The the network output of topk (indices)");
武毅 已提交
82 83 84
    AddInput("Label", "Label of the training data");
    // TODO(typhoonzero): AddInput("Weight", ...
    AddOutput("Accuracy", "The accuracy of current batch");
D
Dong Zhihong 已提交
85
    AddOutput("Correct", "The correct samples count of current batch");
D
Dong Zhihong 已提交
86
    AddOutput("Total", "The samples count of current batch");
武毅 已提交
87

D
Fix bug  
dangqingqing 已提交
88
    AddComment(R"DOC(
K
Kexin Zhao 已提交
89 90 91 92 93 94 95 96 97 98
Accuracy Operator. 

It will print accuracy rate for classification.
The accuracy is calculated as follows:

$$accuracy = \frac{NumOfCorrectPredicts}{NumOfAllSamples}$$

Both the input Out and Label can carry the LoD (Level of Details)
information, or not. But the output only shares the LoD information 
with the input Out(Inference).
99

D
Fix bug  
dangqingqing 已提交
100
)DOC");
武毅 已提交
101 102 103 104 105 106 107
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
F
fengjiayi 已提交
108 109
REGISTER_OPERATOR(accuracy, ops::AccuracyOp, ops::AccuracyOpMaker,
                  paddle::framework::EmptyGradOpMaker);
武毅 已提交
110 111 112 113 114
// 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>);