Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
2839b9db
提交
2839b9db
authored
12月 11, 2012
作者:
Guillaume Desjardins
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Removed all class-member initialization from MRG_RandomStreams, RandomStreams
and SharedRandomStreams (and added associated unit-tests)
上级
a963ce9c
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
36 行增加
和
30 行删除
+36
-30
test_rng_mrg.py
theano/sandbox/test_rng_mrg.py
+7
-15
randomstreams.py
theano/tensor/randomstreams.py
+6
-14
test_randomstreams.py
theano/tensor/tests/test_randomstreams.py
+11
-0
test_shared_randomstreams.py
theano/tensor/tests/test_shared_randomstreams.py
+12
-1
没有找到文件。
theano/sandbox/test_rng_mrg.py
浏览文件 @
2839b9db
...
...
@@ -680,20 +680,12 @@ class T_MRG(unittest.TestCase):
def
test_multiple_rng
():
"""
Test that w
e can have multiple random number generators in parallel, and
th
at we can replicate the stream of one with another. This is meant to fix a
previous bug in rng_mrg.MRG_RandomStreams where state_updates wa
s
initialized as a class variable, instead of in the __init__ method. This
would cause all MRG_RandomStreams objects to share the same state
.
Test that w
hen we have multiple random number generators, we do not alias
th
e state_updates member. `state_updates` can be useful when attempting to
copy the (random) state between two similar theano graphs. The test i
s
meant to detect a previous bug where state_updates was initialized as a
class-attribute, instead of the __init__ function
.
"""
rng1
=
MRG_RandomStreams
(
1234
)
var1
=
theano
.
shared
(
numpy
.
ones
(
1
))
out1
=
rng1
.
uniform
(
size
=
(
1
,))
f1
=
theano
.
function
([],
out1
,
updates
=
{
var1
:
out1
})
assert
len
(
rng1
.
state_updates
)
==
1
rng2
=
MRG_RandomStreams
(
1234
)
out2
=
rng2
.
uniform
(
size
=
(
1
,))
f2
=
theano
.
function
([],
out2
,
updates
=
{
var1
:
out2
})
assert
len
(
rng1
.
state_updates
)
==
1
assert
len
(
rng2
.
state_updates
)
==
1
rng2
=
MRG_RandomStreams
(
2392
)
assert
rng1
.
state_updates
is
not
rng2
.
state_updates
theano/tensor/randomstreams.py
浏览文件 @
2839b9db
...
...
@@ -122,20 +122,6 @@ class RandomStreams(Component, raw_random.RandomStreamsBase):
"""
random_state_variables
=
[]
"""A list of pairs of the form (input_r, output_r). This will be
over-ridden by the module instance to contain stream
generators.
"""
default_instance_seed
=
None
"""Instance variable should take None or integer value. Used to
seed the random number generator that provides seeds for member
streams
"""
def
__init__
(
self
,
seed
=
None
,
no_warn
=
False
):
""":type seed: None or int
...
...
@@ -147,7 +133,13 @@ class RandomStreams(Component, raw_random.RandomStreamsBase):
if
not
no_warn
:
deprecation_warning
()
super
(
RandomStreams
,
self
)
.
__init__
(
no_warn
=
True
)
# A list of pairs of the form (input_r, output_r). This will be
# over-ridden by the module instance to contain stream generators.
self
.
random_state_variables
=
[]
# Instance variable should take None or integer value. Used to seed the
# random number generator that provides seeds for member streams
self
.
default_instance_seed
=
seed
def
allocate
(
self
,
memo
):
...
...
theano/tensor/tests/test_randomstreams.py
浏览文件 @
2839b9db
...
...
@@ -682,6 +682,17 @@ class T_RandomStreams(unittest.TestCase):
assert
val1
.
dtype
==
'int8'
assert
numpy
.
all
(
abs
(
val1
)
<=
1
)
def
test_multiple_rng
(
self
):
"""
Test that when we have multiple random number generators, we do not alias
the state_updates member. `state_updates` can be useful when attempting to
copy the (random) state between two similar theano graphs. The test is
meant to detect a previous bug where state_updates was initialized as a
class-attribute, instead of the __init__ function.
"""
rng1
=
RandomStreams
(
1234
)
rng2
=
RandomStreams
(
2392
)
assert
rng1
.
random_state_variables
is
not
rng2
.
random_state_variables
if
__name__
==
'__main__'
:
from
theano.tests
import
main
...
...
theano/tensor/tests/test_shared_randomstreams.py
浏览文件 @
2839b9db
...
...
@@ -715,7 +715,18 @@ class T_SharedRandomStreams(unittest.TestCase):
s_rng
.
set_value
(
rr
,
borrow
=
True
)
assert
rr
is
s_rng
.
container
.
storage
[
0
]
def
test_multiple_rng
(
self
):
"""
Test that when we have multiple random number generators, we do not alias
the state_updates member. `state_updates` can be useful when attempting to
copy the (random) state between two similar theano graphs. The test is
meant to detect a previous bug where state_updates was initialized as a
class-attribute, instead of the __init__ function.
"""
rng1
=
RandomStreams
(
1234
)
rng2
=
RandomStreams
(
2392
)
assert
rng1
.
state_updates
is
not
rng2
.
state_updates
assert
rng1
.
gen_seedgen
is
not
rng2
.
gen_seedgen
if
__name__
==
'__main__'
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论