Skip to content

Commit

Permalink
Update ktrx.py (#540)
Browse files Browse the repository at this point in the history
  • Loading branch information
Edwin Ng committed Aug 25, 2021
1 parent 5a71bca commit c9e0bbb
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit c9e0bbb

Please sign in to comment.