Add PaddleDetetion/PPYOLOE model support (#22)

* add ppdet/ppyoloe

* Add demo code and documents
This commit is contained in:
Jason
2022-07-19 13:40:16 +08:00
committed by GitHub
parent f8c3906c51
commit 6ae7a16c36
22 changed files with 645 additions and 16 deletions

View File

@@ -14,7 +14,7 @@
#include "fastdeploy/pybind/main.h"
namespace fastdeploy {
void BindPpClsModel(pybind11::module& m) {
void BindPPCls(pybind11::module& m) {
auto ppcls_module = m.def_submodule("ppcls", "Module to deploy PaddleClas.");
pybind11::class_<vision::ppcls::Model, FastDeployModel>(ppcls_module, "Model")
.def(pybind11::init<std::string, std::string, std::string, RuntimeOption,