Replies: 4 comments 3 replies
-
it seems like the esp-dsp library implements vector operations in c not sure how hard it would be to port those over to micropython, I think I'll try doing that and maybe create a simple micrograd/tinygrad library on top of it. But just the inference part, it would be awesome to be able to run tinygrad models on a esp32 |
Beta Was this translation helpful? Give feedback.
-
The easiest would be to create some MicroPython C modules that exposes APIs for the relevant functionality. For inspiration, see how emlearn-micropython works - it implements classical ML models in C and MicroPython APIs. |
Beta Was this translation helpful? Give feedback.
-
I found this example on how to use the ESP32 S3 SIMD instructions on arduino |
Beta Was this translation helpful? Give feedback.
-
Is AI inference possible on the ESP32-S3 using MicroPython? Yes, that's what I'm expecting.😀 |
Beta Was this translation helpful? Give feedback.
-
Acording to espressif ESP32-S3 has AI Acceleration Support
is there any way of accessing those instructions via micropython? so far I only found resources on how to access it using their oficial library would be really cool to be able to inference models on it especially using python
Beta Was this translation helpful? Give feedback.
All reactions