Seeed-Studio / ModelAssistant

Seeed SenseCraft Model Assistant is an open-source project focused on embedded AI. 🔥🔥🔥
https://sensecraftma.seeed.cc/
Apache License 2.0
382 stars 46 forks source link

Correcting the installation of the ethos-u-vela library #252

Closed djairjr closed 1 month ago

djairjr commented 1 month ago

Correcting the installation of the ethos-u-vela library that is not being done correctly via pip in the installation script.

The ethos-u-vela library was not being installed via pip due to some inconsistency in the metadata. Tested only on Google Colab.

At the beginning of the Notebook add the commands:

# Ethos-U-Vela need to be installed this way, or SSCMA does not work anymore...
!git clone https://review.mlplatform.org/ml/ethos-u/ethos-u-vela.git
%cd ethos-u-vela
!pip install .
%cd..
iChizer0 commented 1 month ago

Hi @djairjr, thanks for your contribution! However, I think there are two issues that we can improve here:

If it's convenient for you, could you modify the PR to install the stable version of ethos-u-vela (3.12.0)? Thank you.