| #ifndef _BACKPROP_H_ | |
| #define _BACKPROP_H_ | |
| #define ETA 0.3 | |
| #define MOMENTUM 0.3 | |
| #define LAYERSIZE 50000 | |
| #define HIDDEN_SIZE 16 | |
| #define OUTPUT_SIZE 1 | |
| // GAP Between array index, which we want to compare | |
| // Otherwise very big reference output | |
| #define GAP 1000 | |
| #define ITERATIONS 100 | |
| #define SEED 7 | |
| #endif |