Skip to content

Commit

Permalink
Merge pull request #175 from alliander-opensource/bugfix-include-quan…
Browse files Browse the repository at this point in the history
…tile-models-in-basecase

Bugfix include quantile models in basecase
  • Loading branch information
JanMaartenvanDoorn authored Sep 24, 2021
2 parents b3dab50 + 51f32a3 commit 2fac389
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openstf/tasks/create_basecase_forecast.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def main():
taskname = Path(__file__).name.replace(".py", "")

with TaskContext(taskname) as context:
model_type = ["xgb", "lgb"]
model_type = ["xgb", "xgb_quantile", "lgb"]

PredictionJobLoop(context, model_type=model_type).map(
create_basecase_forecast_task, context
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def read_long_description_from_readme():

setup(
name="openstf",
version="2.4.0",
version="2.4.1",
packages=find_packages(include=["openstf", "openstf.*"]),
description="Open short term forcasting",
long_description=read_long_description_from_readme(),
Expand Down

0 comments on commit 2fac389

Please sign in to comment.