Works well on MNIST

This commit is contained in:
Joseph Redmon
2013-12-05 13:17:16 -08:00
parent 0d6bb5d44d
commit b715671988
12 changed files with 124 additions and 82 deletions

View File

@ -2,7 +2,7 @@
#define ACTIVATIONS_H
typedef enum{
SIGMOID, RELU, IDENTITY, RAMP
SIGMOID, RELU, LINEAR, RAMP, TANH
}ACTIVATION;
ACTIVATION get_activation(char *s);