Update README.md
Browse files
README.md
CHANGED
@@ -68,17 +68,27 @@ The demo model conversion step on AIMO can be found blow:
|
|
68 |
|
69 |
### Step1: convert model
|
70 |
|
71 |
-
|
72 |
|
73 |
-
|
74 |
|
75 |
-
|
76 |
|
77 |
> note: you can skip convert model step, and directly download converted model in [Performance Sheet](#performance).
|
78 |
|
79 |
### Step2: install AidLite SDK
|
80 |
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
-
|
84 |
|
|
|
|
68 |
|
69 |
### Step1: convert model
|
70 |
|
71 |
+
1.1 Prepare source model in onnx format. The source model can be found [here](https://huggingface.co/aplux/YOLOv5/blob/main/yolov5s.onnx) or following [Source Model](#source-model) to obtain.
|
72 |
|
73 |
+
1.2 Login [AIMO](https://aidlux.com/en/product/aimo) and convert source model to target format. The model conversion step can follow **AIMO Conversion Step** in [Model Conversion Sheet](#model-conversion).
|
74 |
|
75 |
+
1.3 After conversion task done, download target model file.
|
76 |
|
77 |
> note: you can skip convert model step, and directly download converted model in [Performance Sheet](#performance).
|
78 |
|
79 |
### Step2: install AidLite SDK
|
80 |
|
81 |
+
```bash
|
82 |
+
# install aidlite sdk c++ api
|
83 |
+
sudo aid-pkg -i aidlite-sdk
|
84 |
+
# install aidlite sdk python api
|
85 |
+
python3 -m pip install pyaidlite -i https://mirrors.aidlux.com --trusted-host mirrors.aidlux.com
|
86 |
+
```
|
87 |
+
|
88 |
+
The developer document of AidLite SDK can be found [here](https://huggingface.co/datasets/aplux/AIToolKit/blob/main/AidLite%20SDK%20Development%20Documents.md).
|
89 |
+
|
90 |
+
### Step3: model inference
|
91 |
|
92 |
+
3.1 Download demo program:
|
93 |
|
94 |
+
3.2
|