Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
93f3b868
提交
93f3b868
authored
10月 31, 2012
作者:
nouiz
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1041 from goodfeli/fix_grad
fix bug in gradient when some outputs of a node have different connectio...
上级
b6db0244
e3a886eb
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
47 行增加
和
41 行删除
+47
-41
gradient.py
theano/gradient.py
+47
-41
没有找到文件。
theano/gradient.py
浏览文件 @
93f3b868
...
...
@@ -602,31 +602,39 @@ def _populate_var_to_node_to_idx(outputs, wrt):
respect to.
returns:
var_to_node_to_idx: a dictionary mapping a variable to
a second dictionary.
the second dictionary maps apply nodes acting on
this variable to the variable's index in the apply
node's input list
This dictionary will only contain variables that
meet two criteria:
1) The elements of at least one output are a
function of the elements of the variable
2) The elements of the variable are a function
of the elements of at least one member of
wrt
This set is exactly the set of variables that
connect the variables in wrt to the cost being
differentiated.
var_to_app_to_idx:
A dictionary mapping a variable to a second dictionary.
The second dictionary maps apply nodes acting on this
variable to the variable's index in the apply node's
input list.
This dictionary will only contain variables that
meet two criteria:
1) The elements of at least one output are a
function of the elements of the variable
2) The elements of the variable are a function of the
elements of at least one member of wrt.
This set is exactly the set of variables that connect
the variables in wrt to the cost being differentiated.
"""
# var_to_
node
_to_idx[var][node] = [i,j] means node has
# var_to_
app
_to_idx[var][node] = [i,j] means node has
# var as input at positions i and j
var_to_node_to_idx
=
{}
# set of variables or nodes that have been added to their true parents
var_to_app_to_idx
=
{}
# Set of variables that have been added to their true parents
# ('true' here means that the elements of the variable are a function
# of the elements of the parent, according to the op's
# connection_pattern)
# Note: we need to revisit the apply nodes repeatedly, because
# different outputs of the apply node are connected to
# different subsets of the inputs.
accounted_for
=
set
([])
def
account_for
(
var
):
...
...
@@ -634,30 +642,28 @@ def _populate_var_to_node_to_idx(outputs, wrt):
return
accounted_for
.
add
(
var
)
if
var
.
owner
is
not
None
:
node
=
var
.
owner
if
node
not
in
accounted_for
:
accounted_for
.
add
(
node
)
app
=
var
.
owner
connection_pattern
=
_node_to_pattern
(
node
)
connection_pattern
=
_node_to_pattern
(
app
)
var_idx
=
node
.
outputs
.
index
(
var
)
var_idx
=
app
.
outputs
.
index
(
var
)
for
i
,
ipt
in
enumerate
(
node
.
inputs
):
for
i
,
ipt
in
enumerate
(
app
.
inputs
):
#don't process ipt if it is not a true
#parent of var
if
not
connection_pattern
[
i
][
var_idx
]:
continue
#don't process ipt if it is not a true
#parent of var
if
not
connection_pattern
[
i
][
var_idx
]:
continue
if
ipt
not
in
var_to_node
_to_idx
:
var_to_node
_to_idx
[
ipt
]
=
{}
node_to_idx
=
var_to_node
_to_idx
[
ipt
]
if
node
not
in
node
_to_idx
:
node_to_idx
[
node
]
=
[]
idx
=
node_to_idx
[
node
]
assert
i
not
in
idx
if
ipt
not
in
var_to_app
_to_idx
:
var_to_app
_to_idx
[
ipt
]
=
{}
app_to_idx
=
var_to_app
_to_idx
[
ipt
]
if
app
not
in
app
_to_idx
:
app_to_idx
[
app
]
=
[]
idx
=
app_to_idx
[
app
]
if
i
not
in
idx
:
idx
.
append
(
i
)
account_for
(
ipt
)
account_for
(
ipt
)
# add all variables that are true ancestors of the cost
for
output
in
outputs
:
...
...
@@ -671,10 +677,10 @@ def _populate_var_to_node_to_idx(outputs, wrt):
def
visit
(
var
):
if
var
in
visited
:
return
if
var
not
in
var_to_
node
_to_idx
:
if
var
not
in
var_to_
app
_to_idx
:
return
visited
.
add
(
var
)
nodes
=
var_to_
node
_to_idx
[
var
]
nodes
=
var_to_
app
_to_idx
[
var
]
for
node
in
nodes
:
connection_pattern
=
_node_to_pattern
(
node
)
for
idx
in
nodes
[
node
]:
...
...
@@ -686,12 +692,12 @@ def _populate_var_to_node_to_idx(outputs, wrt):
visit
(
elem
)
# Remove variables that don't have wrt as a true ancestor
orig_vars
=
list
(
var_to_
node
_to_idx
.
keys
())
orig_vars
=
list
(
var_to_
app
_to_idx
.
keys
())
for
var
in
orig_vars
:
if
var
not
in
visited
:
del
var_to_
node
_to_idx
[
var
]
del
var_to_
app
_to_idx
[
var
]
return
var_to_
node
_to_idx
return
var_to_
app
_to_idx
def
_populate_grad_dict
(
var_to_node_to_idx
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论