Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

KTRX Hotfix #540

Merged
merged 1 commit into from
Aug 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions orbit/models/ktrx.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class BaseKTRX(BaseTemplate):
date_freq : str
date frequency; if not supplied, pd.infer_freq will be used to imply the date frequency.
min_residuals_sd : float
a numeric value from 0 to 1 to indicate the upper bound of residual scale parameter; e.g.
a numeric value from 0 to 1 to indicate the lower bound of residual scale parameter; e.g.
0.5 means residual scale will be sampled from [0, 0.5] in a scaled Beta(2, 2) dist.
flat_multiplier : bool
Default set as True. If False, we will adjust knot scale with a multiplier based on regressor volume
Expand Down Expand Up @@ -110,7 +110,7 @@ def __init__(self,
mvn=0,
flat_multiplier=True,
geometric_walk=False,
min_residuals_sd=1.0,
min_residuals_sd=0.1,
**kwargs):
super().__init__(**kwargs) # create estimator in base class

Expand Down