Skip to content

Commit 6538a20

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 cbd718b commit 6538a20

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
@@ -887,15 +887,15 @@ def logpt_sum(rv_var: TensorVariable, rv_value: Optional[TensorVariable] = None,
887887
WishartBartlett,
888888
)
889889
from pymc3.distributions.simulator import Simulator
890+
from pymc3.distributions.timeseries import (
891+
AR,
892+
AR1,
893+
GARCH11,
894+
GaussianRandomWalk,
895+
MvGaussianRandomWalk,
896+
MvStudentTRandomWalk,
897+
)
890898

891-
# from pymc3.distributions.timeseries import (
892-
# AR,
893-
# AR1,
894-
# GARCH11,
895-
# GaussianRandomWalk,
896-
# MvGaussianRandomWalk,
897-
# MvStudentTRandomWalk,
898-
# )
899899
__all__ = [
900900
"Uniform",
901901
"Flat",
@@ -953,13 +953,13 @@ def logpt_sum(rv_var: TensorVariable, rv_value: Optional[TensorVariable] = None,
953953
"WishartBartlett",
954954
"LKJCholeskyCov",
955955
"LKJCorr",
956-
# "AR1",
957-
# "AR",
956+
"AR1",
957+
"AR",
958958
"AsymmetricLaplace",
959-
# "GaussianRandomWalk",
960-
# "MvGaussianRandomWalk",
961-
# "MvStudentTRandomWalk",
962-
# "GARCH11",
959+
"GaussianRandomWalk",
960+
"MvGaussianRandomWalk",
961+
"MvStudentTRandomWalk",
962+
"GARCH11",
963963
"SkewNormal",
964964
"Mixture",
965965
"NormalMixture",

0 commit comments

Comments
 (0)