mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-09-16 22:20:23 +00:00
Merge branch 'v0.2' of https://github.com/facebookincubator/prophet into v0.2
This commit is contained in:
commit
3060536563
2 changed files with 2 additions and 2 deletions
|
|
@ -600,7 +600,7 @@ logistic_growth_init <- function(df) {
|
|||
# Initialize the offset
|
||||
m <- L0 * T / (L0 - L1)
|
||||
# And the rate
|
||||
k <- L0 / m
|
||||
k <- (L0 - L1) / T
|
||||
return(c(k, m))
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -644,7 +644,7 @@ class Prophet(object):
|
|||
# Initialize the offset
|
||||
m = L0 * T / (L0 - L1)
|
||||
# And the rate
|
||||
k = L0 / m
|
||||
k = (L0 - L1) / T
|
||||
return (k, m)
|
||||
|
||||
# fb-block 7
|
||||
|
|
|
|||
Loading…
Reference in a new issue