ProphetGamma
Bases: Prophetverse
Gamma-likelihood prophet.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
changepoint_interval |
int
|
Number of potential changepoints to sample in the history. |
25
|
changepoint_range |
float or int
|
Proportion of the history in which trend changepoints will be estimated.
|
0.8
|
changepoint_prior_scale |
float
|
Regularization parameter controlling the flexibility of the automatic changepoint selection. |
0.001
|
offset_prior_scale |
float
|
Scale parameter for the prior distribution of the offset. The offset is the constant term in the piecewise trend equation. |
0.1
|
feature_transformer |
sktime transformer, BaseTransformer
|
Transformer object to generate Fourier terms, holiday or other features.
If None, no additional features are used.
For multiple features, pass a |
None
|
capacity_prior_scale |
float
|
Scale parameter for the prior distribution of the capacity. |
0.2
|
capacity_prior_loc |
float
|
Location parameter for the prior distribution of the capacity. |
1.1
|
noise_scale |
float
|
Scale parameter for the observation noise. |
0.05
|
trend |
str, optional, one of "linear" (default) or "logistic"
|
Type of trend to use. Can be "linear" or "logistic". |
'logistic'
|
mcmc_samples |
int
|
Number of MCMC samples to draw. |
2000
|
mcmc_warmup |
int
|
Number of MCMC warmup steps. Also known as burn-in. |
200
|
mcmc_chains |
int
|
Number of MCMC chains to run in parallel. |
4
|
inference_method |
str, optional, one of "mcmc" or "map"
|
Inference method to use. Can be "mcmc" or "map". |
"map"
|
optimizer_name |
str
|
Name of the numpyro optimizer to use for variational inference. |
"Adam"
|
optimizer_kwargs |
dict
|
Additional keyword arguments to pass to the numpyro optimizer. |
{}
|
optimizer_steps |
int
|
Number of optimization steps to perform for variational inference. |
100_000
|
exogenous_effects |
List[AbstractEffect]
|
A list of |
None
|
default_effect |
AbstractEffectm optional, defalut=None
|
The default effect to be used when no effect is specified for a variable. |
None
|
default_exogenous_prior |
tuple
|
Default prior distribution for exogenous effects. |
None
|
rng_key |
jax.random.PRNGKey or None (default
|
Random number generator key. |
None
|
Source code in src/prophetverse/sktime/univariate.py
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 |
|