FastDeploy  latest
Fast & Easy to Deploy!
text_model.h
1 // Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #pragma once
16 #include <memory>
17 
18 #include "fastdeploy/fastdeploy_model.h"
19 #include "fastdeploy/utils/unique_ptr.h"
20 
21 namespace fastdeploy {
22 namespace text {
23 
24 class Preprocessor;
25 class Postprocessor;
26 class Result;
27 class PredictionOption;
28 
29 class FASTDEPLOY_DECL TextModel : public FastDeployModel {
30  public:
31  virtual std::string ModelName() const { return "TextModel"; }
32  virtual bool Predict(const std::string& raw_text, Result* result,
33  const PredictionOption& option);
34  virtual bool PredictBatch(const std::vector<std::string>& raw_text_array,
35  Result* result, const PredictionOption& option);
36  template <typename T, typename... Args>
37  void SetPreprocessor(Args&&... args) {
38  preprocessor_ = utils::make_unique<T>(std::forward<Args>(args)...);
39  }
40  template <typename T, typename... Args>
41  void SetPostprocessor(Args&&... args) {
42  postprocessor_ = utils::make_unique<T>(std::forward<Args>(args)...);
43  }
44 
45  private:
46  std::unique_ptr<Preprocessor> preprocessor_;
47  std::unique_ptr<Postprocessor> postprocessor_;
48 };
49 
50 } // namespace text
51 } // namespace fastdeploy
All C++ FastDeploy APIs are defined inside this namespace.
Definition: option.h:16