add ocr, ppyoloe, picodet examples (#1076)

* add ocr examples

* add ppyoloe examples

add picodet examples

* remove /ScaleFactor in ppdet/postprocessor.cc
This commit is contained in:
Dantès
2023-01-10 16:34:26 +08:00
committed by GitHub
parent fc314f1696
commit de70e8366c
21 changed files with 922 additions and 13 deletions

View File

@@ -71,8 +71,8 @@ bool FastDeployModel::InitRuntimeWithSpecifiedBackend() {
}
} else if (use_sophgotpu) {
if (!IsSupported(valid_sophgonpu_backends, runtime_option.backend)) {
FDERROR << "The valid rknpu backends of model " << ModelName() << " are "
<< Str(valid_rknpu_backends) << ", " << runtime_option.backend
FDERROR << "The valid sophgo backends of model " << ModelName() << " are "
<< Str(valid_sophgonpu_backends) << ", " << runtime_option.backend
<< " is not supported." << std::endl;
return false;
}