Skip to content

Commit

Permalink
Update CMDSTAN_VERSION to 2.32.1 to resolve stan-dev/cmdstan#1158 (#821)
Browse files Browse the repository at this point in the history
* update CMDSTAN_VERSION to 2.32.1 to resolve stan-dev/cmdstan#1158
* fix lint errors
  • Loading branch information
jeongyoonlee authored Sep 26, 2023
1 parent e247c1c commit 7919a8c
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion orbit/estimators/stan_estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ def fit(
fitter=None,
init_values=None,
):

# T_STAR is used as sampling temperature which is used for WBIC calculation
data_input.update({"T_STAR": sampling_temperature})
if self.verbose:
Expand Down
1 change: 0 additions & 1 deletion orbit/template/dlt.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,6 @@ def __init__(
forecast_horizon=1,
**kwargs,
):

self.damped_factor = damped_factor
self.global_trend_option = global_trend_option
self.period = period
Expand Down
1 change: 0 additions & 1 deletion orbit/template/ktr.py
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,6 @@ def _generate_seas(
seas_decomp = dict()

if seasonality is not None and len(seasonality) > 0:

date_col = training_meta[TrainingMetaKeys.DATE_COL.value]
date_array = training_meta[TrainingMetaKeys.DATE_ARRAY.value]
training_end = training_meta[TrainingMetaKeys.END.value]
Expand Down
2 changes: 0 additions & 2 deletions orbit/utils/stan.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def compile_stan_model(stan_model_name):
if not os.path.isfile(compiled_model) or os.path.getmtime(
compiled_model
) < os.path.getmtime(source_model):

logger.info(
"First time in running stan model:{}. Expect 3 - 5 minutes for compilation.".format(
stan_model_name
Expand Down Expand Up @@ -84,7 +83,6 @@ def compile_stan_model_simplified(path):
if not os.path.isfile(compiled_path) or os.path.getmtime(
compiled_path
) < os.path.getmtime(source_path):

logger.info(
"First time in running stan model:{}. Expect 3 - 5 minutes for compilation.".format(
source_filename
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# dist.Distribution().fetch_build_eggs(['cython'])

DESCRIPTION = "Orbit is a package for Bayesian time series modeling and inference."
CMDSTAN_VERSION = "2.31.0"
CMDSTAN_VERSION = "2.32.1"


def read_long_description(filename="README.md"):
Expand Down

0 comments on commit 7919a8c

Please sign in to comment.