Upcoming maintenance
Dear Customers and Partners.
This website will be undergoing scheduled maintenance on June 14, 2023. Please be aware there may be disruption to the developer portal website and associated services during the scheduled maintenance period.
This upgrade is essential to ensure the continued performance, reliability, and security of Developer World.
We apologize for any inconvenience.
.py file along with TensorFlow Lite
-
I want to use TensorFlow lite for programming to create image classification tasks using neural networks and a few other tasks in python language. What is the best possible choice using the Spresense board?
- SDK supports TensorFlow Lite so that the .py extension file can be created. Can you describe the procedure to create a .py file in the SDK CLI environment? or
- Can I use TensorFlow Lite in Circuit python environment? or
- Using SDK create a TensorFlow Lite model and store the C array in sd card and use Circuit Python for other python tasks along the with loading the C array of TensorFlow Lite model?
-
Hi @Chandasri-G,
Currently it is not possible to use TensorFlow Lite Micro with CircuitPython on Spresense. This is because CircuitPython does not support TensorFlow.
If you wanted to use TensorFlow on CircuitPython, you could add a module to CircuitPython as shown here for camera: https://github.com/adafruit/circuitpython/pull/3369
Best Regards,
Kamil Tomaszewski -
@KamilTomaszewski
okay. thanks for your reply!!