ProphetNegBinomial
Bases: Prophetverse
Univariate Prophetverse
forecaster with negative binomial likelihood.
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 |
AbstractEffect 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
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 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 |
|