Merge branch 'develop' of https://github.com/PaddlePaddle/FastDeploy into huawei

This commit is contained in:
yunyaoXYY
2023-01-06 05:07:43 +00:00
387 changed files with 17119 additions and 5385 deletions

View File

@@ -1,4 +1,4 @@
English | [中文](../../cn/build_and_install/sophgo.md)
# How to Build SOPHGO Deployment Environment
## SOPHGO Environment Preparation

View File

@@ -5,7 +5,7 @@ Please check out the FastDeploy C++ deployment library is already in your enviro
This document shows an inference sample on the CPU using the PaddleClas classification model MobileNetV2 as an example.
## 1. Obtaining the Module
## 1. Obtaining the Model
```bash
wget https://bj.bcebos.com/fastdeploy/models/mobilenetv2.tgz

View File

@@ -5,7 +5,7 @@ Please check out the FastDeploy is already installed in your environment. You ca
This document shows an inference sample on the CPU using the PaddleClas classification model MobileNetV2 as an example.
## 1. Obtaining the Module
## 1. Obtaining the model
``` python
import fastdeploy as fd
@@ -42,7 +42,7 @@ results = runtime.infer({
print(results[0].shape)
```
When loading is complete, you can get the following output information indicating the initialized backend and the hardware devices.
When loading is complete, you will get the following output information indicating the initialized backend and the hardware devices.
```
[INFO] fastdeploy/fastdeploy_runtime.cc(283)::Init Runtime initialized with Backend::OrtBackend in device Device::CPU.
```