summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNina Drozd <nina.drozd@arm.com>2022-09-06 17:00:34 +0100
committerNina Drozd <nina.drozd@arm.com>2022-09-07 14:21:25 +0100
commit28224309791e36dfb806d5a0554d15260585818f (patch)
treee81be8206310aec405fd62825bb1d6b4bf020959 /docs
parent72eec15eddf0822a138df029b4afaf2b137dd356 (diff)
downloadml-embedded-evaluation-kit-28224309791e36dfb806d5a0554d15260585818f.tar.gz
MLECO-3535: update to 22.08 versions of models
* update to 22.08 release of ethos-u-vela * update download_dependencies script to new tf revision Signed-off-by: Nina Drozd <nina.drozd@arm.com> Change-Id: Ib4cb47ac0881d45fc6766b6b87154584d9db7374
Diffstat (limited to 'docs')
-rw-r--r--docs/quick_start.md2
-rw-r--r--docs/sections/building.md2
-rw-r--r--docs/sections/troubleshooting.md10
3 files changed, 7 insertions, 7 deletions
diff --git a/docs/quick_start.md b/docs/quick_start.md
index 2af0c8e..d7afae7 100644
--- a/docs/quick_start.md
+++ b/docs/quick_start.md
@@ -71,7 +71,7 @@ mkdir resources_downloaded && cd resources_downloaded
python3 -m venv env
env/bin/python3 -m pip install --upgrade pip
env/bin/python3 -m pip install --upgrade setuptools
-env/bin/python3 -m pip install ethos-u-vela==3.4.0
+env/bin/python3 -m pip install ethos-u-vela==3.5.0
cd ..
curl -L https://github.com/ARM-software/ML-zoo/raw/7c32b097f7d94aae2cd0b98a8ed5a3ba81e66b18/models/anomaly_detection/micronet_medium/tflite_int8/ad_medium_int8.tflite \
diff --git a/docs/sections/building.md b/docs/sections/building.md
index 2306385..de78dce 100644
--- a/docs/sections/building.md
+++ b/docs/sections/building.md
@@ -712,7 +712,7 @@ After compiling, your custom model has now replaced the default one in the appli
> <https://pypi.org/project/ethos-u-vela/>.
> The source code is hosted on <https://review.mlplatform.org/plugins/gitiles/ml/ethos-u/ethos-u-vela/>.
-> **Note:** Using the 22.05 versions of software dependencies will require Vela to be at least version 3.4.0
+> **Note:** Using the 22.08 versions of software dependencies will require Vela to be at least version 3.5.0
> or you may encounter issues when trying to run applications on different variants of Ethos-U NPUs.
The Vela compiler is a tool that can optimize a neural network model into a version that can run on an embedded system
diff --git a/docs/sections/troubleshooting.md b/docs/sections/troubleshooting.md
index fd2f393..d5224c4 100644
--- a/docs/sections/troubleshooting.md
+++ b/docs/sections/troubleshooting.md
@@ -6,7 +6,7 @@
- [NPU configuration mismatch error when running inference](./troubleshooting.md#npu-configuration-mismatch-error-when-running-inference)
- [Errors when cloning the repository](./troubleshooting.md#errors-when-cloning-the-repository)
- [Problem installing Vela](./troubleshooting.md#problem-installing-vela)
- - [No matching distribution found for ethos-u-vela==3.4.0](./troubleshooting.md#no-matching-distribution-found-for-ethos_u_vela)
+ - [No matching distribution found for ethos-u-vela==3.5.0](./troubleshooting.md#no-matching-distribution-found-for-ethos_u_vela)
- [How to update Python3 package to 3.7 version](./troubleshooting.md#how-to-update-python3-package-to-newer-version)
- [Error trying to build on Arm Virtual Hardware](./troubleshooting.md#error-trying-to-build-on-arm-virtual-hardware)
@@ -127,12 +127,12 @@ To solve this issue install libpython3 on the system.
## No matching distribution found for ethos-u-vela
-Vela 3.4.0 increases Python requirement to at least version 3.7, if not installed on your system the following error will occur:
+Vela 3.5.0 increases Python requirement to at least version 3.7, if not installed on your system the following error will occur:
```log
-python3 -m pip install ethos-u-vela==3.4.0
-ERROR: Could not find a version that satisfies the requirement ethos-u-vela==3.4.0 (from versions: 0.1.0, 1.0.0, 1.1.0, 1.2.0, 2.0.0, 2.0.1, 2.1.1, 3.0.0, 3.1.0, 3.2.0)
-ERROR: No matching distribution found for ethos-u-vela==3.4.0
+python3 -m pip install ethos-u-vela==3.5.0
+ERROR: Could not find a version that satisfies the requirement ethos-u-vela==3.5.0 (from versions: 0.1.0, 1.0.0, 1.1.0, 1.2.0, 2.0.0, 2.0.1, 2.1.1, 3.0.0, 3.1.0, 3.2.0)
+ERROR: No matching distribution found for ethos-u-vela==3.5.0
```
Ensure that the minimum Python 3.7 requirement is installed and it's the default version.