Small updates

This commit is contained in:
Joseph Redmon
2014-04-30 16:17:40 -07:00
parent 354b0cbdcb
commit 00d483697a
12 changed files with 53 additions and 189 deletions

View File

@ -10,6 +10,8 @@ ACTIVATION get_activation(char *s);
char *get_activation_string(ACTIVATION a);
float activate(float x, ACTIVATION a);
float gradient(float x, ACTIVATION a);
void gradient_array(const float *x, const int n, const ACTIVATION a, float *delta);
void activate_array(float *x, const int n, const ACTIVATION a);
#endif