File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 17
17
A collection of common probability distributions for stochastic
18
18
nodes in PyMC.
19
19
"""
20
+ import warnings
21
+
20
22
import numpy as np
21
23
import theano
22
24
import theano .tensor as tt
23
- from scipy import stats
24
- from scipy .special import expit
25
- from scipy .interpolate import InterpolatedUnivariateSpline
26
- import warnings
27
25
28
- from pymc3 .theanof import floatX
29
26
from . import transforms
30
- from pymc3 .util import get_variable_name
31
27
from .special import log_i0
32
28
from ..math import invlogit , logit , logdiffexp
33
29
from .dist_math import (
46
42
clipped_beta_rvs ,
47
43
)
48
44
from .distribution import Continuous , draw_values , generate_samples
45
+ from pymc3 .theanof import floatX
46
+ from pymc3 .util import get_variable_name
47
+ from scipy import stats
48
+ from scipy .special import expit
49
+ from scipy .interpolate import InterpolatedUnivariateSpline
49
50
50
51
__all__ = [
51
52
"Uniform" ,
You can’t perform that action at this time.
0 commit comments