general_model.h 2.6 KB
Newer Older
G
guru4elephant 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
// Copyright (c) 2019 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.
#pragma once

#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>

#include <fstream>
#include <string>
#include <vector>
#include <map>

#include "sdk-cpp/builtin_format.pb.h"
#include "sdk-cpp/general_model_service.pb.h"
#include "sdk-cpp/include/common.h"
#include "sdk-cpp/include/predictor_sdk.h"

using baidu::paddle_serving::sdk_cpp::Predictor;
using baidu::paddle_serving::sdk_cpp::PredictorApi;

// given some input data, pack into pb, and send request
namespace baidu {
namespace paddle_serving {
namespace general_model {

typedef std::map<std::string, std::vector<float>> FetchedMap;

G
guru4elephant 已提交
40

G
guru4elephant 已提交
41 42 43 44 45 46
class PredictorClient {
 public:
  PredictorClient() {}
  ~PredictorClient() {}

  void init(const std::string & client_conf);
G
guru4elephant 已提交
47 48 49 50 51 52
  void set_predictor_conf(
      const std::string& conf_path,
      const std::string& conf_file);
  int create_predictor();

  void predict(
G
guru4elephant 已提交
53 54 55 56
      const std::vector<std::vector<float> > & float_feed,
      const std::vector<std::string> & float_feed_name,
      const std::vector<std::vector<int64_t> > & int_feed,
      const std::vector<std::string> & int_feed_name,
G
guru4elephant 已提交
57 58
      const std::vector<std::string> & fetch_name,
      FetchedMap * result_map);
G
guru4elephant 已提交
59

G
guru4elephant 已提交
60
  void predict_with_profile(
G
guru4elephant 已提交
61 62 63 64
      const std::vector<std::vector<float> > & float_feed,
      const std::vector<std::string> & float_feed_name,
      const std::vector<std::vector<int64_t> > & int_feed,
      const std::vector<std::string> & int_feed_name,
G
guru4elephant 已提交
65 66
      const std::vector<std::string> & fetch_name,
      FetchedMap * result_map);
G
guru4elephant 已提交
67 68 69 70

 private:
  PredictorApi _api;
  Predictor * _predictor;
G
guru4elephant 已提交
71 72 73
  std::string _predictor_conf;
  std::string _predictor_path;
  std::string _conf_file;
G
guru4elephant 已提交
74 75
  std::map<std::string, int> _feed_name_to_idx;
  std::map<std::string, int> _fetch_name_to_idx;
G
guru4elephant 已提交
76
  std::map<std::string, std::string> _fetch_name_to_var_name;
G
guru4elephant 已提交
77 78 79 80 81 82 83 84
  std::vector<std::vector<int> > _shape;
};

}  // namespace general_model
}  // namespace paddle_serving
}  // namespace baidu

/* vim: set expandtab ts=4 sw=4 sts=4 tw=100: */