settings.ini 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #Animal Crossing Settings
  2. #One setting per line.
  3. #Lines starting with # are ignored
  4. #format: settingName=mySetting
  5. #a setting name followed by an equals sign followed by a setting value
  6. #ex: myWidth=400
  7. #The image pixel size should match the size used for training the model.
  8. #The program will resize all input images to this size automatically.
  9. #Image width
  10. #example: IMG_WIDTH=100
  11. IMG_WIDTH=400
  12. #Image height
  13. #example: IMG_HEIGHT=100
  14. IMG_HEIGHT=300
  15. #Image channels. 1 for a model trained on grayscale. 3 for rgb.
  16. #example: IMG_CHANNELS=1
  17. IMG_CHANNELS=3
  18. #Name of the checkpoint folder.
  19. #ex: CHECKPOINT_FOLDER=.\checkpoint\
  20. #ex: CHECKPOINT_FOLDER=some-folder/anotherfolder/mycheckpoint
  21. CHECKPOINT_FOLDER=checkpoint
  22. #batch size: how many images tensorflow groups together to put into ram
  23. #at once. Default is 32 inside tensorflow functions. This should match
  24. #the size used in the model training. (Probably-- I haven't tested yet)
  25. #example: BATCH_SIZE=32
  26. BATCH_SIZE=32
  27. #The following section is for class identifiers.
  28. #Must be in same order as the training program.
  29. #Must be separated by only commas,
  30. #They will be given integer numbers based on their position as well.
  31. classNames=bobcat,coyote,deer-elk,human,not,raccoon,weasel