BitNetMCU
BitNetMCU copied to clipboard
Neural Networks with low bit weights on low end 32 bit microcontrollers such as the CH32V003 RISC-V Microcontroller and others
```c for (uint32_t j = 0; j < 8; j++) { int32_t in=*activations_idx++; int32_t tmpsum = (weightChunk & 0x80000000) ? -in : in; sum += tmpsum; // sign*in*1 if (weightChunk...
If you have plans to develop this project further, I would like to suggest a 4.6-bit scheme. https://www.mdpi.com/2227-7390/12/5/651 I think this is an interesting schematic that fits very well on...