-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig_source.yaml
46 lines (40 loc) · 1.05 KB
/
config_source.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
# seed for the random number generators, to make things reproducible
seed: 0
# define th number of cross validations to perform
n_cross_validations : 5
true_energy_column: corsika_event_header_total_energy
coordinate_transformation: FACT
# columns containing coordinates of the source and of the pointing
source_az_column: source_position_az
source_zd_column: source_position_zd
pointing_az_column: pointing_position_az
pointing_zd_column: pointing_position_zd
disp:
disp_regressor : |
ensemble.RandomForestRegressor(
n_estimators=30,
max_features='sqrt',
n_jobs=-1,
max_depth=20,
)
sign_classifier: |
ensemble.RandomForestClassifier(
n_estimators=30,
max_features='sqrt',
n_jobs=-1,
max_depth=20,
)
# randomly sample the data if you dont want to use the whole set
n_signal : 500
features:
- concentration_cog
- concentration_core
- delta
- leakage1
- leakage2
- length
- skewness_long
- kurtosis_long
- num_islands
- size
- width