You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/toolchain/manual_1_overview.md
+22-20Lines changed: 22 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@
4
4
5
5
# 1. Toolchain Overview
6
6
7
-
**2022 Nov**
8
-
**Toolchain v0.20.0**
7
+
**2023 Feb**
8
+
**Toolchain v0.20.1**
9
9
10
10
## 1.1. Introduction
11
11
@@ -20,6 +20,11 @@ In this document, you'll learn:
20
20
21
21
**Major changes of the current version**
22
22
23
+
***[v0.20.1]**
24
+
* Update toolchain example to MobileNet v2.
25
+
* Fix knerex bias adjustment.
26
+
* Fix knerex shared weight with same name support.
27
+
* Fix other bugs.
23
28
***[v0.20.0]**
24
29
* Support text procssing models.
25
30
* Set flatbuffer as the default 720 compiling mode.
@@ -45,7 +50,7 @@ To keep the diagram as clear as possible, some details are omitted. But it is en
45
50
2. Fixed-point model generation. Quantize the floating-point model and generate bie file. Test the bie file and compare the result with the previous step.
46
51
3. Compilation. Batch compile multiple bie models into a nef format binary file. Test the nef file and compare the result with the previous step.
47
52
48
-
In the following parts, we will use LittleNet as the example. Details will be explained later in other sections.
53
+
In the following parts, we will use MobileNet V2 as the example. Details will be explained later in other sections.
49
54
And all the code below in this section can be found inside the docker at `/workspace/examples/test_python_api.py`.
50
55
51
56
### 1.3. Toolchain Docker Deployment
@@ -76,7 +81,7 @@ In the following sections, we'll introduce the API and their usage. You can also
76
81
77
82
**Note that this package is only available in the docker due to the dependency issue.**
78
83
79
-
Here the LittleNet model is already in ONNX format. So, we only need to optimize the ONNX model to fix our toolchain.
84
+
Here the MobileNet V2 model is already in ONNX format. So, we only need to optimize the ONNX model to fix our toolchain.
80
85
The following model optimization code is in Python since we are using the Python API.
0 commit comments