12 lines
232 B
C
12 lines
232 B
C
#ifndef _GLOBAL_H
|
|
#define _GLOBAL_H
|
|
#define SYNAPSE_WEIGHT_MAX 2.0
|
|
#define SYNAPSE_WEIGHT_MIN -2.0
|
|
#define LEARNING_RATE 0.01
|
|
#define MOMENTUM 0.1
|
|
#define ACCEPT 0.65 /* Was 0.95 */
|
|
#define LEARNACCEPT 0.15 /* Was 0.05 */
|
|
|
|
|
|
#endif
|