TinyMaix icon indicating copy to clipboard operation
TinyMaix copied to clipboard

TinyMaix is a tiny inference library for microcontrollers (TinyML).

Results 13 TinyMaix issues
Sort by recently updated
recently updated
newest added

Hi. I am working on porting TinyMaix to MicroPython, as part of the https://github.com/emlearn/emlearn-micropython project. I am doing this a dynamic module in MicroPyhon, so it can be insalled at...

循环结构以后会支持吗?

https://github.com/sipeed/TinyMaix/blob/9487854be2ce329b89427d4a5b14ce6136cb15cf/src/arch_cpu.h#L21-L41 Is there any skills?

模型输入为 30个数字,经过多层全连接,每层全连接加了relu,输出的结果不对 debug看好像不会对torch的这种网络做激活层的输出,有什么好的修改办法吗。 demo网络如下。 class SmallNet(nn.Module): def __init__(self): super(SmallNet, self).__init__() self.fc1 = nn.Linear(30, 128) self.fc2 = nn.Linear(128, 64) self.fc3 = nn.Linear(64, 2) def forward(self, x): x = torch.relu(self.fc1(x)) x =...

Hi there, Really great to see your work! Just wondering do you have any plans to support PyTorch model or onnx model?

+ 开发板:STM32F746 Discovery kit + 开发IDE:STM32CubeIDE 1.10.1 + 现状简介:使用 `TM_ARCH_CPU` 时能够正常编译以及推理(应该可以证明不是源码路径等问题),但改为 `TM_ARCH_ARM_SIMD` 后 Build Project 失败,并报错: ![image](https://user-images.githubusercontent.com/22089207/207825596-b11e1746-a01d-4249-a670-7b33f0da66db.png) 报错的位置就是在 https://github.com/sipeed/TinyMaix/blob/0bec8f3318e98e249e14dcdeb569d34bc75d47ef/src/arch_arm_simd.h#L31 https://github.com/sipeed/TinyMaix/blob/0bec8f3318e98e249e14dcdeb569d34bc75d47ef/src/arch_arm_simd.h#L71 这个有点超出我的知识范围了,不知道后续应该做点什么? PS: 大概移植流程 1. 创建空项目,并把 TinyMaix 的整个文件夹复制到项目根目录下。 2. 把 TinyMaix/include...

example/mnist中需要包含的头文件实际不存在? ![image](https://user-images.githubusercontent.com/75674977/230356335-2bd614b5-2186-4d98-a885-5bb8287da5da.png) 实际上该目录并不存在这个h文件。 ![image](https://user-images.githubusercontent.com/75674977/230356736-e9723dce-75e8-4761-828b-47917ebdbcd0.png)

你好,我在使用你提供的h5文件进行模型转换时出现如下问题 ![屏幕截图 2024-07-31 155909](https://github.com/user-attachments/assets/eeb7da3c-16ae-4f8e-9178-ef61b45b77e5)