-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsettings.py
More file actions
44 lines (38 loc) · 701 Bytes
/
Copy pathsettings.py
File metadata and controls
44 lines (38 loc) · 701 Bytes
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
feature_mapping_params = {
"order": 3,
"only_self_terms": True
}
regressor_name = "Lasso"
regressor_params = {
"RandomForestRegressor": {
"n_estimators": 200
},
"GradientBoostingRegressor": {
"n_estimators": 200,
"max_features": "auto",
"max_leaf_nodes": None
},
"Ridge": {},
"Lasso": {
"alpha": 1,
"max_iter": 2000
}
}
grid_search = False
not_features = [
'id',
'updated',
'ADMIN',
'ISO_A3',
'building_count',
'count',
'osm_users',
'geometry',
'gdp',
'population',
'area_km2',
'highway_sum',
'highway_length',
'osm_objects'
]
delete_outliers_bool = True