Convolutional layers working w/ matrices

This commit is contained in:
Joseph Redmon
2014-01-28 16:28:42 -08:00
parent b2b7137b6f
commit f7a17f82eb
26 changed files with 459 additions and 363 deletions

View File

@ -7,8 +7,8 @@ typedef enum{
ACTIVATION get_activation(char *s);
double activate(double x, ACTIVATION a);
double gradient(double x, ACTIVATION a);
float activate(float x, ACTIVATION a);
float gradient(float x, ACTIVATION a);
#endif