-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.py
51 lines (40 loc) · 1.62 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""trace2vary: An Algorithm to Recover Feature-Code Traceability and Variability
Author: Tassio Vale
Website: www.tassiovale.com
Contact: tassio.vale@ufrb.edu.br
This file stores all configuration of the tool
"""
# complete_set_file = 'projects/_preprocessor_complete_set.dat'
# training_set_file = 'projects/_preprocessor_training_set.dat'
# test_set_file = 'projects/_preprocessor_training_set.dat'
complete_set_file = 'projects/_preprocessor_test_set.dat'
training_set_file = 'projects/_preprocessor_training_set.dat'
test_set_file = 'projects/_bsd_test_set.dat'
arg_pre_process_projects = '-p'
arg_trace_recovery = '-tr'
arg_fit_machine_learning_model = '-fit'
arg_cv_analysis = '-cv'
arg_visualization = '-vis'
arg_recovery_preparation = '-pre'
arg_core_tasks = '-core'
arg_only_default_method = '-default'
sgd_file = 'trace_recovery/sgd.model'
sgd = 'sgd'
auto_learning_file = 'trace_recovery/auto_learning.model'
auto_learning = 'auto_ml'
traces_file = 'traces.json'
mandatory_str = 'mandatory'
optional_str = 'optional'
result_dictionary_per_feature = 'dictionary_per_feature'
result_number_of_traced_files = 'number_of_traced_files'
result_number_of_not_traced_files = 'number_of_not_traced_files'
result_type = 'type'
result_products = 'products'
result_all_files = 'all_files'
result_common_files = 'common_files'
result_shared_files = 'shared_files'
result_specific_files = 'specific_files'
result_common_files_diff_ratios = 'common_files_diff_ratios'
result_common_files_levenshtein = 'common_files_levenshtein'
result_shared_files_diff_ratios = 'shared_files_diff_ratios'
result_shared_files_levenshtein = 'shared_files_levenshtein'