analyzer_text_classification_tester.cc 3.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright (c) 2018 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.

L
luotao1 已提交
15
#include "paddle/fluid/inference/tests/api/tester_helper.h"
16 17

namespace paddle {
L
luotao1 已提交
18
namespace inference {
19

20
struct DataReader {
L
luotao1 已提交
21 22
  explicit DataReader(const std::string &path)
      : file(new std::ifstream(path)) {}
23

L
luotao1 已提交
24
  bool NextBatch(std::vector<PaddleTensor> *input, int batch_size) {
25 26
    PADDLE_ENFORCE_EQ(batch_size, 1);
    std::string line;
L
luotao1 已提交
27 28 29
    PaddleTensor tensor;
    tensor.dtype = PaddleDType::INT64;
    tensor.lod.emplace_back(std::vector<size_t>({0}));
30 31 32 33 34 35
    std::vector<int64_t> data;

    for (int i = 0; i < batch_size; i++) {
      if (!std::getline(*file, line)) return false;
      inference::split_to_int64(line, ' ', &data);
    }
L
luotao1 已提交
36
    tensor.lod.front().push_back(data.size());
37

L
luotao1 已提交
38 39 40 41 42
    tensor.data.Resize(data.size() * sizeof(int64_t));
    memcpy(tensor.data.data(), data.data(), data.size() * sizeof(int64_t));
    tensor.shape.push_back(data.size());
    tensor.shape.push_back(1);
    input->assign({tensor});
43
    return true;
44 45
  }

46 47 48
  std::unique_ptr<std::ifstream> file;
};

T
Tao Luo 已提交
49 50 51 52 53 54 55
void SetConfig(AnalysisConfig *cfg) {
  cfg->model_dir = FLAGS_infer_model;
  cfg->use_gpu = false;
  cfg->device = 0;
  cfg->specify_input_name = true;
  cfg->enable_ir_optim = true;
}
56

T
Tao Luo 已提交
57 58
void SetInput(std::vector<std::vector<PaddleTensor>> *inputs) {
  std::vector<PaddleTensor> input_slots;
L
luotao1 已提交
59
  DataReader reader(FLAGS_infer_data);
T
Tao Luo 已提交
60 61 62 63 64
  int num_batches = 0;
  while (reader.NextBatch(&input_slots, FLAGS_batch_size)) {
    (*inputs).emplace_back(input_slots);
    ++num_batches;
    if (!FLAGS_test_all_data) return;
65
  }
T
Tao Luo 已提交
66 67
  LOG(INFO) << "total number of samples: " << num_batches * FLAGS_batch_size;
}
L
luotao1 已提交
68

T
Tao Luo 已提交
69 70 71 72 73
// Easy for profiling independently.
TEST(Analyzer_Text_Classification, profile) {
  AnalysisConfig cfg;
  SetConfig(&cfg);
  std::vector<PaddleTensor> outputs;
74

T
Tao Luo 已提交
75 76
  std::vector<std::vector<PaddleTensor>> input_slots_all;
  SetInput(&input_slots_all);
77 78
  TestPrediction(reinterpret_cast<const PaddlePredictor::Config *>(&cfg),
                 input_slots_all, &outputs, FLAGS_num_threads);
79

T
Tao Luo 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93
  if (FLAGS_num_threads == 1) {
    // Get output
    LOG(INFO) << "get outputs " << outputs.size();
    for (auto &output : outputs) {
      LOG(INFO) << "output.shape: " << to_string(output.shape);
      // no lod ?
      CHECK_EQ(output.lod.size(), 0UL);
      LOG(INFO) << "output.dtype: " << output.dtype;
      std::stringstream ss;
      for (int i = 0; i < 5; i++) {
        ss << static_cast<float *>(output.data.data())[i] << " ";
      }
      LOG(INFO) << "output.data summary: " << ss.str();
      // one batch ends
94 95 96 97
    }
  }
}

T
Tao Luo 已提交
98 99 100 101 102 103 104
// Compare result of NativeConfig and AnalysisConfig
TEST(Analyzer_Text_Classification, compare) {
  AnalysisConfig cfg;
  SetConfig(&cfg);

  std::vector<std::vector<PaddleTensor>> input_slots_all;
  SetInput(&input_slots_all);
105 106
  CompareNativeAndAnalysis(
      reinterpret_cast<const PaddlePredictor::Config *>(&cfg), input_slots_all);
T
Tao Luo 已提交
107
}
108

109 110 111 112
TEST(Analyzer_Text_Classification, compare_against_embedding_fc_lstm_fused) {
  AnalysisConfig cfg;
  SetConfig(&cfg);
  // Enable embedding_fc_lstm_fuse_pass (disabled by default)
113
  cfg.pass_builder()->InsertPass(2, "embedding_fc_lstm_fuse_pass");
114 115 116

  std::vector<std::vector<PaddleTensor>> input_slots_all;
  SetInput(&input_slots_all);
117 118
  CompareNativeAndAnalysis(
      reinterpret_cast<const PaddlePredictor::Config *>(&cfg), input_slots_all);
119 120
}

L
luotao1 已提交
121
}  // namespace inference
122
}  // namespace paddle