custom_config.py 654 B

123456789101112131415161718192021222324252627
  1. from modules.config.cnn_config import *
  2. # store all variables from cnn config
  3. context_vars = vars()
  4. # Custom config used for redefined config variables if necessary
  5. # folders
  6. ## noisy_folder = 'noisy'
  7. ## not_noisy_folder = 'notNoisy'
  8. # file or extensions
  9. ## post_image_name_separator = '___'
  10. # variables
  11. ## features_choices_labels = ['static', 'svd_reconstruction', 'fast_ica_reconstruction', 'ipca_reconstruction']
  12. # parameters
  13. keras_epochs = 200
  14. ## keras_batch = 32
  15. ## val_dataset_size = 0.2
  16. ## keras_img_size = (200, 200)