vis_demo.cc 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* 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. */

/*
 * This file contains demo for mobilenet, se-resnext50 and ocr.
 */

19
#include <glog/logging.h>
20
#include "gflags/gflags.h"
21
#include "utils.h"  // NOLINT
22 23 24 25 26 27

#ifdef PADDLE_WITH_CUDA
DECLARE_double(fraction_of_gpu_memory_to_use);
#endif
DEFINE_string(modeldir, "", "Directory of the inference model.");
DEFINE_string(refer, "", "path to reference result for comparison.");
T
tianshuo78520a 已提交
28 29 30
DEFINE_string(data, "",
              "path of data; each line is a record, format is "
              "'<space split floats as data>\t<space split ints as shape'");
L
Luo Tao 已提交
31
DEFINE_bool(use_gpu, false, "Whether use gpu.");
32
#ifdef PADDLE_WITH_SHARED_LIB
33
DECLARE_bool(profile);
34
#endif
L
Luo Tao 已提交
35 36 37

namespace paddle {
namespace demo {
38 39

/*
T
Tao Luo 已提交
40
 * Use the native and analysis fluid engine to inference the demo.
41
 */
N
nhzlx 已提交
42
void Main(bool use_gpu) {
T
Tao Luo 已提交
43
  std::unique_ptr<PaddlePredictor> predictor, analysis_predictor;
44 45 46
  AnalysisConfig config;
  if (use_gpu) {
    config.EnableUseGpu(100, 0);
L
Luo Tao 已提交
47
  }
48 49
  config.SetModel(FLAGS_modeldir + "/__model__",
                  FLAGS_modeldir + "/__params__");
50

51
  predictor = CreatePaddlePredictor<NativeConfig>(config.ToNativeConfig());
52
  analysis_predictor = CreatePaddlePredictor(config);
N
nhzlx 已提交
53

54 55 56 57 58 59 60 61
  // Just a single batch of data.
  std::string line;
  std::ifstream file(FLAGS_data);
  std::getline(file, line);
  auto record = ProcessALine(line);
  file.close();

  // Inference.
Y
Yan Chunwei 已提交
62 63 64 65 66
  PaddleTensor input;
  input.shape = record.shape;
  input.data =
      PaddleBuf(record.data.data(), record.data.size() * sizeof(float));
  input.dtype = PaddleDType::FLOAT32;
67

T
Tao Luo 已提交
68
  std::vector<PaddleTensor> output, analysis_output;
N
nhzlx 已提交
69
  predictor->Run({input}, &output, 1);
70 71 72 73 74

  auto& tensor = output.front();

  // compare with reference result
  CheckOutput(FLAGS_refer, tensor);
T
Tao Luo 已提交
75 76 77 78

  // the analysis_output has some diff with native_output,
  // TODO(luotao): add CheckOutput for analysis_output later.
  analysis_predictor->Run({input}, &analysis_output, 1);
79 80 81 82
}

}  // namespace demo
}  // namespace paddle
L
Luo Tao 已提交
83 84

int main(int argc, char** argv) {
85
  ::GFLAGS_NAMESPACE::ParseCommandLineFlags(&argc, &argv, true);
N
nhzlx 已提交
86 87
  if (FLAGS_use_gpu) {
    paddle::demo::Main(true /*use_gpu*/);
N
nhzlx 已提交
88
  } else {
N
nhzlx 已提交
89
    paddle::demo::Main(false /*use_gpu*/);
L
Luo Tao 已提交
90 91 92
  }
  return 0;
}