-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.yaml
98 lines (63 loc) · 1.99 KB
/
config.yaml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Attribute Selection algorithm pipeline
# Attribute on the basis of which blocking needs to be performed (Very important with respect to performance)
# Needed while sample generation and generation of processed data.
# The number should be between
BLOCKING_ATTRIBUTE: 3
##
##
##
COMPARISON_ATTRIBUTE: [1,2,3,4,5,6,7,8,9,10,11,12,13,14]
##
## Sampling Rate (how much should be the size of sample with respect to the unique records in it)
##
SAMPLE_RATE: 0.02
##
## This is used to allow errors while identifying records. What is threshold tolerable while perfoming the linking.
##
THRESHOLD: 2
# Input data files. (Please place them in the data folder)
input_files:
input_file_1: "../data/pse_dec.1.1"
input_file_2: "../data/pse_dec.1.2"
#
# Names of the Attributes and the location in the dataset.
#
header: ['simulant_id', 'first_name', 'middle_initial', 'last_name', 'age',
'date_of_birth', 'street_number', 'street_name', 'unit_number', 'city',
'state', 'zipcode', 'relation_to_reference_person', 'sex',
'race_ethnicity']
#
# Unique identifier for the data
#
id_column: "simulant_id"
#
# Names of the files generated after sampling (NO NEED to change this)
#
sample_output:
output_file_1: '../data/out.1.1'
output_file_2: '../data/out.1.2'
#
# Name of the configuration file for RLA code (NO NEED to change this)
#
rla_xml_file: "../data/config_test.xml"
# OPTIONAL
# The extraneous data will get pruned. This parameter gives freedom to specofy amount of duplicate records (extraneous) can be there
# Suggested value between 0.2 to 0.3
FEATURE_PRUNE_KEEP: 0.2
##
## NO NEED to change this.
##
pruned_output: "../data/pruned_out.csv"
##
## NO NEED to change this.
##
rules_output: "../data/rules_out.csv"
##
## Stages of the PIPELINE
## Can enable disable stages. Each stage requires output from previous stage (Please take note of this).
##
run:
sample_generation: False
processed_data_generation: False
feature_prune: False
attribute_selection: True