tinn
tinn copied to clipboard
A tiny neural network library
Is posssible to create a autput function in C? For example I learn my network and need embeding this function to my program in C is possible to save in...
Would you like to add more error handling for return values from functions like the following? - [calloc](http://pubs.opengroup.org/onlinepubs/9699919799/functions/calloc.html "Memory allocation") ⇒ [xtbuild](https://github.com/glouw/tinn/blob/0228fdb32e89270fece8c1e186d1f891a4452f92/Tinn.c#L109) - [fopen](http://pubs.opengroup.org/onlinepubs/9699919799/functions/fopen.html "Open a stream") ⇒ [xtsave](https://github.com/glouw/tinn/blob/0228fdb32e89270fece8c1e186d1f891a4452f92/Tinn.c#L128)
The biases are never updated in the backprop algorithm as it currently stands. Biases can be included in the array of weights which would simplify things a bit (or keep...