Skip to content

Commit 82b7575

Browse files
brandonwillardOriolAbril
authored andcommitted
Remove newly deprecated classes and functions
Classes and functions removed: - PyMC3Variable - ObservedRV - FreeRV - MultiObservedRV - TransformedRV - ArrayOrdering - VarMap - DataMap - _DrawValuesContext - _DrawValuesContextBlocker - is_fast_drawable - _compile_theano_function - vectorize_theano_function - get_vectorize_signature - _draw_value - draw_values - generate_samples - fast_sample_posterior_predictive Modules removed: - pymc3.distributions.posterior_predictive - pymc3.tests.test_random
1 parent 15b6570 commit 82b7575

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

pymc3/distributions/__init__.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -824,15 +824,15 @@ def logpt_sum(rv_var: TensorVariable, rv_value: Optional[TensorVariable] = None,
824824
WishartBartlett,
825825
)
826826
from pymc3.distributions.simulator import Simulator
827+
from pymc3.distributions.timeseries import (
828+
AR,
829+
AR1,
830+
GARCH11,
831+
GaussianRandomWalk,
832+
MvGaussianRandomWalk,
833+
MvStudentTRandomWalk,
834+
)
827835

828-
# from pymc3.distributions.timeseries import (
829-
# AR,
830-
# AR1,
831-
# GARCH11,
832-
# GaussianRandomWalk,
833-
# MvGaussianRandomWalk,
834-
# MvStudentTRandomWalk,
835-
# )
836836
__all__ = [
837837
"Uniform",
838838
"Flat",
@@ -890,13 +890,13 @@ def logpt_sum(rv_var: TensorVariable, rv_value: Optional[TensorVariable] = None,
890890
"WishartBartlett",
891891
"LKJCholeskyCov",
892892
"LKJCorr",
893-
# "AR1",
894-
# "AR",
893+
"AR1",
894+
"AR",
895895
"AsymmetricLaplace",
896-
# "GaussianRandomWalk",
897-
# "MvGaussianRandomWalk",
898-
# "MvStudentTRandomWalk",
899-
# "GARCH11",
896+
"GaussianRandomWalk",
897+
"MvGaussianRandomWalk",
898+
"MvStudentTRandomWalk",
899+
"GARCH11",
900900
"SkewNormal",
901901
"Mixture",
902902
"NormalMixture",

0 commit comments

Comments
 (0)