Skip to content

Commit

Permalink
update quantile computation in quantilegbm and quantilelgbm
Browse files Browse the repository at this point in the history
  • Loading branch information
basaks committed Jul 8, 2024
1 parent 97b98bd commit ae64f5f
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 11 deletions.
2 changes: 1 addition & 1 deletion configs/ref_gradientboost_quantiles.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ learning:
'min_weight_fraction_leaf': Real(0.0, 0.5, prior='uniform')

prediction:
quantiles: 0.95
quantiles: 0.9
outbands: 4


Expand Down
4 changes: 3 additions & 1 deletion configs/ref_quantile_lgbm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,13 @@ learning:
target_transform: identity
random_state: 1
max_depth: 20
upper_alpha: 0.95
lower_alpha: 0.05


prediction:
prediction_template: configs/data/sirsam/dem_foc2.tif
quantiles: 0.95
quantiles: 0.90
outbands: 4


Expand Down
34 changes: 26 additions & 8 deletions uncoverml/optimise/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,7 @@ def __init__(self, target_transform='identity',
self.alpha = alpha
self.upper_alpha = upper_alpha
self.lower_alpha = lower_alpha
self.interval = upper_alpha - lower_alpha

@staticmethod
def collect_prediction(regressor, X_test):
Expand All @@ -658,7 +659,7 @@ def fit(self, X, y, *args, **kwargs):
def predict(self, X, *args, **kwargs):
return self.predict_dist(X, *args, **kwargs)[0]

def predict_dist(self, X, interval=0.95, *args, ** kwargs):
def predict_dist(self, X, interval=0.90, *args, ** kwargs):
Ey = self.gb.predict(X)

ql_ = self.collect_prediction(self.gb_quantile_lower, X)
Expand All @@ -667,9 +668,17 @@ def predict_dist(self, X, interval=0.95, *args, ** kwargs):
Vy = ((qu_ - ql_) / (norm.ppf(self.upper_alpha) - norm.ppf(self.lower_alpha))) ** 2

# to make gbm quantile model consistent with other quantile based models
ql, qu = norm.interval(interval, loc=Ey, scale=np.sqrt(Vy))

return Ey, Vy, ql, qu
if np.isclose(interval, self.interval):
return Ey, Vy, ql_, qu_
else:
# if the interval matches (upper_alpha-lower_alpha), we don't need to compute ql, qu
# and also don't need to make assumpition of normal distribution to compute ql and qu
log.warn("===============================================")
log.warn("Used normal distribution assumption to compute quantiles."
" Using quantiles=(upper_alpha-lower_alpha) will remove this requirement!")
log.warn("===============================================")
ql, qu = norm.interval(interval, loc=Ey, scale=np.sqrt(Vy))
return Ey, Vy, ql, qu


class GBMReg(GradientBoostingRegressor, TagsMixin):
Expand Down Expand Up @@ -758,6 +767,7 @@ def __init__(self, target_transform='identity', loss='quantile',
self.n_iter_no_change = n_iter_no_change
self.tol = tol
self.ccp_alpha = ccp_alpha
self.interval = upper_alpha - lower_alpha

self.gb = GradientBoostingRegressor(
learning_rate=learning_rate, n_estimators=n_estimators,
Expand Down Expand Up @@ -820,7 +830,7 @@ def fit(self, X, y, *args, **kwargs):
def predict(self, X, *args, **kwargs):
return self.predict_dist(X, *args, **kwargs)[0]

def predict_dist(self, X, interval=0.95, *args, ** kwargs):
def predict_dist(self, X, interval=0.9, *args, ** kwargs):
Ey = self.gb.predict(X)

ql_ = self.collect_prediction(self.gb_quantile_lower, X)
Expand All @@ -829,9 +839,17 @@ def predict_dist(self, X, interval=0.95, *args, ** kwargs):
Vy = ((qu_ - ql_) / (norm.ppf(self.upper_alpha) - norm.ppf(self.lower_alpha))) ** 2

# to make gbm quantile model consistent with other quantile based models
ql, qu = norm.interval(interval, loc=Ey, scale=np.sqrt(Vy))

return Ey, Vy, ql, qu
if np.isclose(interval, self.interval):
return Ey, Vy, ql_, qu_
else:
# if the interval matches (upper_alpha-lower_alpha), we don't need to compute ql, qu
# and also don't need to make assumpition of normal distribution to compute ql and qu
log.warn("===============================================")
log.warn("Used normal distribution assumption to compute quantiles."
" Using quantiles=(upper_alpha-lower_alpha) will remove this requirement!")
log.warn("===============================================")
ql, qu = norm.interval(interval, loc=Ey, scale=np.sqrt(Vy))
return Ey, V, ql, qu


class CatBoostWrapper(CatBoostRegressor, TagsMixin):
Expand Down
6 changes: 5 additions & 1 deletion uncoverml/predict.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
modelmaps.update(krig_dict)


def predict(data, model, interval=0.95, **kwargs):
def predict(data, model, interval=0.9, **kwargs):

# Classification
if hasattr(model, 'predict_proba'):
Expand All @@ -34,6 +34,8 @@ def pred(X):
else:
def pred(X):
if hasattr(model, 'predict_dist'):
if hasattr(model, 'upper_alpha') and hasattr(model, 'lower_alpha'):
interval = model.upper_alpha - model.lower_alpha
Ey, Vy, ql, qu = model.predict_dist(X, interval, **kwargs)
predres = np.hstack((Ey[:, np.newaxis], Vy[:, np.newaxis],
ql[:, np.newaxis], qu[:, np.newaxis]))
Expand Down Expand Up @@ -204,6 +206,8 @@ def render_partition(model, subchunk, image_out: geoio.ImageWriter, config: Conf
log.info("Loaded {:2.4f}GB of image data".format(total_gb))
alg = config.algorithm
log.info("Predicting targets for {}.".format(alg))
print("inside render partitions ===>>>", config.quantiles)
import sys; sys.exit()
try:
y_star = predict(x, model, interval=config.quantiles, lon_lat=_get_lon_lat(subchunk, config))
except ValueError as v:
Expand Down

0 comments on commit ae64f5f

Please sign in to comment.