Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
0e7a532e
提交
0e7a532e
authored
4月 02, 2015
作者:
Pascal Lamblin
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #2723 from carriepl/scan_connection_pattern
[CRASH] Fix crash in connection_pattern when there are mitmots
上级
4a2402bb
4be55f63
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
22 行增加
和
5 行删除
+22
-5
scan_op.py
theano/scan_module/scan_op.py
+2
-5
test_scan.py
theano/scan_module/tests/test_scan.py
+20
-0
没有找到文件。
theano/scan_module/scan_op.py
浏览文件 @
0e7a532e
...
@@ -1414,11 +1414,8 @@ class Scan(PureOp):
...
@@ -1414,11 +1414,8 @@ class Scan(PureOp):
corresponding inner output(s) in a sequence.
corresponding inner output(s) in a sequence.
"""
"""
s
=
0
s
=
0
if
self
.
n_mit_mot
>
0
:
e
=
0
e
=
len
(
self
.
mitmot_out_taps
()[
0
])
for
p
in
xrange
(
oidx
+
1
):
else
:
e
=
1
for
p
in
xrange
(
oidx
):
s
=
e
s
=
e
if
p
<
self
.
n_mit_mot
:
if
p
<
self
.
n_mit_mot
:
e
+=
len
(
self
.
mitmot_out_taps
()[
p
])
e
+=
len
(
self
.
mitmot_out_taps
()[
p
])
...
...
theano/scan_module/tests/test_scan.py
浏览文件 @
0e7a532e
...
@@ -838,6 +838,26 @@ class T_Scan(unittest.TestCase):
...
@@ -838,6 +838,26 @@ class T_Scan(unittest.TestCase):
n_steps
=
2
)
n_steps
=
2
)
tensor
.
grad
(
a
[
-
1
],
a0
)
tensor
.
grad
(
a
[
-
1
],
a0
)
def
test_connection_pattern2
(
self
):
# This tests for a crash in connection_pattern() when a scan node
# has more than one mitmot (multiple input taps as well as
# multiple output taps) output
x
=
tensor
.
matrix
()
seq
=
tensor
.
vector
()
def
inner_fct
(
seq
,
state_old
,
state_current
):
state_next
=
state_old
*
2
+
state_current
+
seq
return
state_next
out
,
_
=
theano
.
scan
(
inner_fct
,
sequences
=
seq
,
outputs_info
=
{
'initial'
:
x
,
'taps'
:[
-
2
,
-
1
]})
g_out
=
theano
.
grad
(
out
.
sum
(),
[
seq
,
x
])
scan_node
=
g_out
[
0
]
.
owner
.
inputs
[
1
]
.
owner
.
inputs
[
1
]
.
owner
.
inputs
[
0
]
.
owner
connection_pattern
=
scan_node
.
op
.
connection_pattern
(
scan_node
)
def
test_grad_two_scans
(
self
):
def
test_grad_two_scans
(
self
):
# data input & output
# data input & output
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论