提交 3707d812 authored 作者: Brandon T. Willard's avatar Brandon T. Willard 提交者: Brandon T. Willard

Fix typo in normal RandomVariable's default arguments

上级 2a022eeb
......@@ -48,7 +48,7 @@ class NormalRV(RandomVariable):
dtype = config.floatX
_print_name = ("N", "\\operatorname{N}")
def __call__(self, loc=0.0, scale=1.1, size=None, **kwargs):
def __call__(self, loc=0.0, scale=1.0, size=None, **kwargs):
return super().__call__(loc, scale, size=size, **kwargs)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论