cnn_config.py 554 B

123456789101112131415161718192021
  1. from .global_config import *
  2. # store all variables from global config
  3. context_vars = vars()
  4. # folders
  5. noisy_folder = 'noisy'
  6. not_noisy_folder = 'notNoisy'
  7. # file or extensions
  8. post_image_name_separator = '___'
  9. # variables
  10. features_choices_labels = ['static', 'svd_reconstruction', 'fast_ica_reconstruction', 'ipca_reconstruction']
  11. # parameters
  12. keras_epochs = 30
  13. keras_batch = 32
  14. val_dataset_size = 0.2
  15. keras_img_size = (200, 200)