Failed to Setup SSCMA in Google Colab

There might be some dependency conflicts with tensorflow and ethos-u-vela.

According to Backtracking, pip will keep trying until a compatible version can be found.

Meanwhile, there are some corresponding versions between the tf with ethos and python with ethos:

Knowing the prerequisites, here’s my temporary solution:

Install the TensorFlow and ethos-u-vela before you executing setup_colab.sh.

Add a new cell in colab:

!pip install ethos-u-vela==3.9.0 tensorflow==2.12.0

This time with a stricter limitation.

After that, SSCMA can be successfully installed.

And the training process

2 Likes