config.h 312 B

12345678910111213141516171819
  1. #ifndef CONFIG_H_
  2. #define CONFIG_H_
  3. #define WIDTH 20
  4. #define HEIGHT 20
  5. #define BIAS 20.0
  6. #define SAMPLE_SIZE 75
  7. #define TRAIN_PASSES 2000
  8. #define PPM_SCALER 25
  9. #define PPM_COLOR_INTENSITY 255
  10. #define PPM_RANGE 10.0
  11. #define DATA_FOLDER "data"
  12. #define TRAIN_SEED 69
  13. #define CHECK_SEED 420
  14. #endif // CONFIG_H_