-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathexample07_optimizeddistribution.py
More file actions
95 lines (86 loc) · 3.46 KB
/
example07_optimizeddistribution.py
File metadata and controls
95 lines (86 loc) · 3.46 KB
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
"""
Copyright (c) 2021 Olivier Sprangers
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
https://github.com/elephaint/pgbm/blob/main/LICENSE
"""
#%% Import packages
import torch
from pgbm.torch import PGBM
from sklearn.model_selection import train_test_split
from datasets import get_dataset, get_fold
#%% Objective
def objective(yhat, y, sample_weight=None):
gradient = (yhat - y)
hessian = torch.ones_like(yhat)
return gradient, hessian
def rmseloss_metric(yhat, y, sample_weight=None):
loss = (yhat - y).pow(2).mean().sqrt()
return loss
#%% Generic Parameters
# PGBM specific
method = 'pgbm'
params = {'min_split_gain':0,
'min_data_in_leaf':2,
'max_leaves':8,
'max_bin':64,
'learning_rate':0.1,
'n_estimators':100,
'verbose':2,
'early_stopping_rounds':100,
'feature_fraction':1,
'bagging_fraction':1,
'seed':1,
'reg_lambda':1,
'device':'gpu',
'gpu_device_id':0,
'derivatives':'exact',
'distribution':'normal'}
n_forecasts = 1000
#%% Loop
# datasets = ['housing', 'concrete', 'energy', 'kin8nm', 'msd', 'naval', 'power', 'protein', 'wine', 'yacht']
dataset = 'housing'
# Get data
data = get_dataset(dataset)
X_train, X_test, y_train, y_test = get_fold(dataset, data, 0)
X_train_val, X_val, y_train_val, y_val = train_test_split(X_train, y_train, test_size=0.2, random_state=0)
# Build datasets
train_data = (X_train, y_train)
train_val_data = (X_train_val, y_train_val)
valid_data = (X_val, y_val)
# Set base number of estimators
base_estimators = 2000
params['n_estimators'] = base_estimators
# Train to retrieve best iteration
model = PGBM()
model.train(train_val_data, objective=objective, metric=rmseloss_metric, valid_set=valid_data, params=params)
# Find best tree correlation & distribution on validation set
best_distribution, best_tree_correlation = model.optimize_distribution(X_val, y_val)
#%% Train model on full dataset and evaluate base case + optimal choice of distribution and correlation hyperparameter
# Set iterations to best iteration from validation set
params['n_estimators'] = model.best_iteration
# Retrain on full set
model = PGBM()
model.train(train_data, objective=objective, metric=rmseloss_metric, params=params)
#% Probabilistic predictions base case
model.distribution = 'normal'
base_case_tree_correlation = model.tree_correlation
yhat_dist_pgbm = model.predict_dist(X_test, n_forecasts=n_forecasts)
# Scoring
crps_old = model.crps_ensemble(yhat_dist_pgbm.cpu(), y_test).mean()
# Optimal case
model.distribution = best_distribution
model.tree_correlation = best_tree_correlation
yhat_dist_pgbm = model.predict_dist(X_test, n_forecasts=n_forecasts)
# Scoring
crps_new = model.crps_ensemble(yhat_dist_pgbm.cpu(), y_test).mean()
# Print scores
print(f"Base case CRPS {crps_old:.2f}, distribution = normal, tree_correlation = {base_case_tree_correlation}")
print(f"Optimal CRPS {crps_new:.2f}, distribution = {model.distribution}, tree_correlation = {model.tree_correlation}")