Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
4317d0df
提交
4317d0df
authored
3月 12, 2023
作者:
Shreyas Singh
提交者:
Ricardo Vieira
3月 22, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Refactored RV _print_name to long names
上级
bfd72571
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
22 行增加
和
22 行删除
+22
-22
basic.py
pytensor/tensor/random/basic.py
+22
-22
没有找到文件。
pytensor/tensor/random/basic.py
浏览文件 @
4317d0df
...
@@ -87,7 +87,7 @@ class UniformRV(RandomVariable):
...
@@ -87,7 +87,7 @@ class UniformRV(RandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
]
ndims_params
=
[
0
,
0
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"U
"
,
"
\\
operatorname{U
}"
)
_print_name
=
(
"U
niform"
,
"
\\
operatorname{Uniform
}"
)
def
__call__
(
self
,
low
=
0.0
,
high
=
1.0
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
low
=
0.0
,
high
=
1.0
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a uniform distribution.
r"""Draw samples from a uniform distribution.
...
@@ -141,7 +141,7 @@ class TriangularRV(RandomVariable):
...
@@ -141,7 +141,7 @@ class TriangularRV(RandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
,
0
]
ndims_params
=
[
0
,
0
,
0
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"Triang
"
,
"
\\
operatorname{Triang
}"
)
_print_name
=
(
"Triang
ular"
,
"
\\
operatorname{Triangular
}"
)
def
__call__
(
self
,
left
,
mode
,
right
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
left
,
mode
,
right
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a triangular distribution.
r"""Draw samples from a triangular distribution.
...
@@ -242,7 +242,7 @@ class NormalRV(RandomVariable):
...
@@ -242,7 +242,7 @@ class NormalRV(RandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
]
ndims_params
=
[
0
,
0
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"N
"
,
"
\\
operatorname{N
}"
)
_print_name
=
(
"N
ormal"
,
"
\\
operatorname{Normal
}"
)
def
__call__
(
self
,
loc
=
0.0
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
loc
=
0.0
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a normal distribution.
r"""Draw samples from a normal distribution.
...
@@ -322,7 +322,7 @@ class HalfNormalRV(ScipyRandomVariable):
...
@@ -322,7 +322,7 @@ class HalfNormalRV(ScipyRandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
]
ndims_params
=
[
0
,
0
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"
N**+"
,
"
\\
operatorname{N^{+}
}"
)
_print_name
=
(
"
HalfNormal"
,
"
\\
operatorname{HalfNormal
}"
)
def
__call__
(
self
,
loc
=
0.0
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
loc
=
0.0
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a half-normal distribution.
r"""Draw samples from a half-normal distribution.
...
@@ -387,7 +387,7 @@ class LogNormalRV(RandomVariable):
...
@@ -387,7 +387,7 @@ class LogNormalRV(RandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
]
ndims_params
=
[
0
,
0
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"LogN
"
,
"
\\
operatorname{LogN
}"
)
_print_name
=
(
"LogN
ormal"
,
"
\\
operatorname{LogNormal
}"
)
def
__call__
(
self
,
mean
=
0.0
,
sigma
=
1.0
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
mean
=
0.0
,
sigma
=
1.0
,
size
=
None
,
**
kwargs
):
r"""Draw sample from a lognormal distribution.
r"""Draw sample from a lognormal distribution.
...
@@ -651,7 +651,7 @@ class ExponentialRV(RandomVariable):
...
@@ -651,7 +651,7 @@ class ExponentialRV(RandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
]
ndims_params
=
[
0
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"Exp
"
,
"
\\
operatorname{Exp
}"
)
_print_name
=
(
"Exp
onential"
,
"
\\
operatorname{Exponential
}"
)
def
__call__
(
self
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
r"""Draw samples from an exponential distribution.
r"""Draw samples from an exponential distribution.
...
@@ -853,7 +853,7 @@ class MvNormalRV(RandomVariable):
...
@@ -853,7 +853,7 @@ class MvNormalRV(RandomVariable):
ndim_supp
=
1
ndim_supp
=
1
ndims_params
=
[
1
,
2
]
ndims_params
=
[
1
,
2
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"
N"
,
"
\\
operatorname{N
}"
)
_print_name
=
(
"
MultivariateNormal"
,
"
\\
operatorname{MultivariateNormal
}"
)
def
__call__
(
self
,
mean
=
None
,
cov
=
None
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
mean
=
None
,
cov
=
None
,
size
=
None
,
**
kwargs
):
r""" "Draw samples from a multivariate normal distribution.
r""" "Draw samples from a multivariate normal distribution.
...
@@ -931,7 +931,7 @@ class DirichletRV(RandomVariable):
...
@@ -931,7 +931,7 @@ class DirichletRV(RandomVariable):
ndim_supp
=
1
ndim_supp
=
1
ndims_params
=
[
1
]
ndims_params
=
[
1
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"Dir
"
,
"
\\
operatorname{Dir
}"
)
_print_name
=
(
"Dir
ichlet"
,
"
\\
operatorname{Dirichlet
}"
)
def
__call__
(
self
,
alphas
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
alphas
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a dirichlet distribution.
r"""Draw samples from a dirichlet distribution.
...
@@ -996,7 +996,7 @@ class PoissonRV(RandomVariable):
...
@@ -996,7 +996,7 @@ class PoissonRV(RandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
]
ndims_params
=
[
0
]
dtype
=
"int64"
dtype
=
"int64"
_print_name
=
(
"Pois
"
,
"
\\
operatorname{Pois
}"
)
_print_name
=
(
"Pois
son"
,
"
\\
operatorname{Poisson
}"
)
def
__call__
(
self
,
lam
=
1.0
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
lam
=
1.0
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a poisson distribution.
r"""Draw samples from a poisson distribution.
...
@@ -1041,7 +1041,7 @@ class GeometricRV(RandomVariable):
...
@@ -1041,7 +1041,7 @@ class GeometricRV(RandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
]
ndims_params
=
[
0
]
dtype
=
"int64"
dtype
=
"int64"
_print_name
=
(
"Geom
"
,
"
\\
operatorname{Geom
}"
)
_print_name
=
(
"Geom
etric"
,
"
\\
operatorname{Geometric
}"
)
def
__call__
(
self
,
p
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
p
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a geometric distribution.
r"""Draw samples from a geometric distribution.
...
@@ -1083,7 +1083,7 @@ class HyperGeometricRV(RandomVariable):
...
@@ -1083,7 +1083,7 @@ class HyperGeometricRV(RandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
,
0
]
ndims_params
=
[
0
,
0
,
0
]
dtype
=
"int64"
dtype
=
"int64"
_print_name
=
(
"HyperGeom
"
,
"
\\
operatorname{HyperGeom
}"
)
_print_name
=
(
"HyperGeom
etric"
,
"
\\
operatorname{HyperGeometric
}"
)
def
__call__
(
self
,
ngood
,
nbad
,
nsample
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
ngood
,
nbad
,
nsample
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a geometric distribution.
r"""Draw samples from a geometric distribution.
...
@@ -1131,7 +1131,7 @@ class CauchyRV(ScipyRandomVariable):
...
@@ -1131,7 +1131,7 @@ class CauchyRV(ScipyRandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
]
ndims_params
=
[
0
,
0
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"C
"
,
"
\\
operatorname{C
}"
)
_print_name
=
(
"C
auchy"
,
"
\\
operatorname{Cauchy
}"
)
def
__call__
(
self
,
loc
=
0.0
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
loc
=
0.0
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a Cauchy distribution.
r"""Draw samples from a Cauchy distribution.
...
@@ -1181,7 +1181,7 @@ class HalfCauchyRV(ScipyRandomVariable):
...
@@ -1181,7 +1181,7 @@ class HalfCauchyRV(ScipyRandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
]
ndims_params
=
[
0
,
0
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"
C**+"
,
"
\\
operatorname{C^{+}
}"
)
_print_name
=
(
"
HalfCauchy"
,
"
\\
operatorname{HalfCauchy
}"
)
def
__call__
(
self
,
loc
=
0.0
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
loc
=
0.0
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a half-Cauchy distribution.
r"""Draw samples from a half-Cauchy distribution.
...
@@ -1235,7 +1235,7 @@ class InvGammaRV(ScipyRandomVariable):
...
@@ -1235,7 +1235,7 @@ class InvGammaRV(ScipyRandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
]
ndims_params
=
[
0
,
0
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"Inv
Gamma"
,
"
\\
operatorname{Gamma^{-1}
}"
)
_print_name
=
(
"Inv
erseGamma"
,
"
\\
operatorname{InverseGamma
}"
)
def
__call__
(
self
,
shape
,
scale
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
shape
,
scale
,
size
=
None
,
**
kwargs
):
r"""Draw samples from an inverse-gamma distribution.
r"""Draw samples from an inverse-gamma distribution.
...
@@ -1332,7 +1332,7 @@ class TruncExponentialRV(ScipyRandomVariable):
...
@@ -1332,7 +1332,7 @@ class TruncExponentialRV(ScipyRandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
,
0
]
ndims_params
=
[
0
,
0
,
0
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"Trunc
Exp"
,
"
\\
operatorname{TruncExp
}"
)
_print_name
=
(
"Trunc
atedExponential"
,
"
\\
operatorname{TruncatedExponential
}"
)
def
__call__
(
self
,
b
,
loc
=
0.0
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
b
,
loc
=
0.0
,
scale
=
1.0
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a truncated exponential distribution.
r"""Draw samples from a truncated exponential distribution.
...
@@ -1446,7 +1446,7 @@ class BernoulliRV(ScipyRandomVariable):
...
@@ -1446,7 +1446,7 @@ class BernoulliRV(ScipyRandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
]
ndims_params
=
[
0
]
dtype
=
"int64"
dtype
=
"int64"
_print_name
=
(
"Bern
"
,
"
\\
operatorname{Bern
}"
)
_print_name
=
(
"Bern
oulli"
,
"
\\
operatorname{Bernoulli
}"
)
def
__call__
(
self
,
p
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
p
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a Bernoulli distribution.
r"""Draw samples from a Bernoulli distribution.
...
@@ -1539,7 +1539,7 @@ class BinomialRV(RandomVariable):
...
@@ -1539,7 +1539,7 @@ class BinomialRV(RandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
]
ndims_params
=
[
0
,
0
]
dtype
=
"int64"
dtype
=
"int64"
_print_name
=
(
"Binom
"
,
"
\\
operatorname{Binom
}"
)
_print_name
=
(
"Binom
ial"
,
"
\\
operatorname{Binomial
}"
)
def
__call__
(
self
,
n
,
p
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
n
,
p
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a binomial distribution.
r"""Draw samples from a binomial distribution.
...
@@ -1583,7 +1583,7 @@ class NegBinomialRV(ScipyRandomVariable):
...
@@ -1583,7 +1583,7 @@ class NegBinomialRV(ScipyRandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
]
ndims_params
=
[
0
,
0
]
dtype
=
"int64"
dtype
=
"int64"
_print_name
=
(
"N
B"
,
"
\\
operatorname{NB
}"
)
_print_name
=
(
"N
egativeBinomial"
,
"
\\
operatorname{NegativeBinomial
}"
)
def
__call__
(
self
,
n
,
p
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
n
,
p
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a negative binomial distribution.
r"""Draw samples from a negative binomial distribution.
...
@@ -1638,7 +1638,7 @@ class BetaBinomialRV(ScipyRandomVariable):
...
@@ -1638,7 +1638,7 @@ class BetaBinomialRV(ScipyRandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
,
0
]
ndims_params
=
[
0
,
0
,
0
]
dtype
=
"int64"
dtype
=
"int64"
_print_name
=
(
"BetaBinom
"
,
"
\\
operatorname{BetaBinom
}"
)
_print_name
=
(
"BetaBinom
ial"
,
"
\\
operatorname{BetaBinomial
}"
)
def
__call__
(
self
,
n
,
a
,
b
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
n
,
a
,
b
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a beta-binomial distribution.
r"""Draw samples from a beta-binomial distribution.
...
@@ -1689,7 +1689,7 @@ class GenGammaRV(ScipyRandomVariable):
...
@@ -1689,7 +1689,7 @@ class GenGammaRV(ScipyRandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
0
,
0
,
0
]
ndims_params
=
[
0
,
0
,
0
]
dtype
=
"floatX"
dtype
=
"floatX"
_print_name
=
(
"G
G"
,
"
\\
operatorname{GG
}"
)
_print_name
=
(
"G
eneralizedGamma"
,
"
\\
operatorname{GeneralizedGamma
}"
)
def
__call__
(
self
,
alpha
=
1.0
,
p
=
1.0
,
lambd
=
1.0
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
alpha
=
1.0
,
p
=
1.0
,
lambd
=
1.0
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a generalized gamma distribution.
r"""Draw samples from a generalized gamma distribution.
...
@@ -1751,7 +1751,7 @@ class MultinomialRV(RandomVariable):
...
@@ -1751,7 +1751,7 @@ class MultinomialRV(RandomVariable):
ndim_supp
=
1
ndim_supp
=
1
ndims_params
=
[
0
,
1
]
ndims_params
=
[
0
,
1
]
dtype
=
"int64"
dtype
=
"int64"
_print_name
=
(
"M
N"
,
"
\\
operatorname{MN
}"
)
_print_name
=
(
"M
ultinomial"
,
"
\\
operatorname{Multinomial
}"
)
def
__call__
(
self
,
n
,
p
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
n
,
p
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a discrete multinomial distribution.
r"""Draw samples from a discrete multinomial distribution.
...
@@ -1823,7 +1823,7 @@ class CategoricalRV(RandomVariable):
...
@@ -1823,7 +1823,7 @@ class CategoricalRV(RandomVariable):
ndim_supp
=
0
ndim_supp
=
0
ndims_params
=
[
1
]
ndims_params
=
[
1
]
dtype
=
"int64"
dtype
=
"int64"
_print_name
=
(
"Cat
"
,
"
\\
operatorname{Cat
}"
)
_print_name
=
(
"Cat
egorical"
,
"
\\
operatorname{Categorical
}"
)
def
__call__
(
self
,
p
,
size
=
None
,
**
kwargs
):
def
__call__
(
self
,
p
,
size
=
None
,
**
kwargs
):
r"""Draw samples from a discrete categorical distribution.
r"""Draw samples from a discrete categorical distribution.
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论