config.py 1.3 KB

12345678910111213141516171819202122232425262728
  1. import numpy as np
  2. zone_folder = "zone"
  3. output_data_folder = 'data'
  4. dataset_path = 'fichiersSVD_light'
  5. threshold_map_folder = 'threshold_map'
  6. models_information_folder = 'models_info'
  7. saved_models_folder = 'saved_models'
  8. min_max_custom_folder = 'custom_norm'
  9. csv_model_comparisons_filename = "models_comparisons.csv"
  10. seuil_expe_filename = 'seuilExpe'
  11. min_max_filename_extension = "_min_max_values"
  12. config_filename = "config"
  13. models_names_list = ["svm_model","ensemble_model","ensemble_model_v2"]
  14. # define all scenes values
  15. scenes_names = ['Appart1opt02', 'Bureau1', 'Cendrier', 'Cuisine01', 'EchecsBas', 'PNDVuePlongeante', 'SdbCentre', 'SdbDroite', 'Selles']
  16. scenes_indices = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I']
  17. maxwell_scenes_names = ['Appart1opt02', 'Cuisine01', 'SdbCentre', 'SdbDroite']
  18. maxwell_scenes_indices = ['A', 'D', 'G', 'H']
  19. normalization_choices = ['svd', 'svdn', 'svdne']
  20. zones_indices = np.arange(16)
  21. metric_choices_labels = ['lab', 'mscn', 'mscn_revisited', 'low_bits_2', 'low_bits_3', 'low_bits_4', 'low_bits_5', 'low_bits_6','low_bits_4_shifted_2']