Can U740 install tensorflow?

install tensorflow or tensorflow lite on U740?
how to choose?

Recent versions of the SiFive OpenEmbedded port contain tensorflow-lite. On my unleashed (because my unmatched is running Fedora currently)

freedom-u540:~$ python3
Python 3.10.0 (default, Oct  4 2021, 17:55:55) [GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import tflite_runtime as tf
>>> print("TensorFlow version:", tf.__version__)
TensorFlow version: 2.5.0
>>> exit ()
freedom-u540:~$ 

I don’t know anything about tensorflow, or the difference between that and the lite version. Because it is a python library, it may also be available for other OS versions running on unmatched.

You can find the SIFive OpenEmbedded port at
https://github.com/sifive/freedom-u-sdk

Yes,I can run tflite inferencing with python tflite_runtime , but has anyone install the whole tensorflow on risc-v platform?

tflite_runtime is tiny tensorflow for IOT or mobile situation, tflite only contains inferencing part but no training support. Tensorflow is bigger and stronger.