prep for github

This commit is contained in:
vik 2024-11-28 22:14:34 -06:00
parent 2bd03dd8b8
commit 1479198df2
3 changed files with 11 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 311 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 322 KiB

11
README.md Normal file
View File

@ -0,0 +1,11 @@
# nn - implementation of neural networks in c
implements neural networks in c, targets embedded systems (microcontrollers, fpgas) \
current implemented a simple feedforward nn in `snn.c`, todo is a convolutional neural network (with HLS #pragmas) for an fpga. \
depends on native c libraries and [gsl](https://www.gnu.org/software/gsl/) as the only external one
### future goals
cnn w/ pragams -> successfully compiled to verilog using vivado/vitus \
self-made matrix multiplication library, relying only on native c ones \
code cleanup and optimization \