Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
9ee7cb64
提交
9ee7cb64
authored
9月 17, 2015
作者:
Kelvin Xu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
remove unused optimizer
上级
e0a4f15a
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
0 行增加
和
109 行删除
+0
-109
nnet.py
theano/tensor/nnet/nnet.py
+0
-109
没有找到文件。
theano/tensor/nnet/nnet.py
浏览文件 @
9ee7cb64
...
@@ -697,115 +697,6 @@ def softmax_simplifier(numerators, denominators):
...
@@ -697,115 +697,6 @@ def softmax_simplifier(numerators, denominators):
return
numerators
,
denominators
return
numerators
,
denominators
opt
.
local_mul_canonizer
.
add_simplifier
(
softmax_simplifier
,
'softmax_simplifier'
)
opt
.
local_mul_canonizer
.
add_simplifier
(
softmax_simplifier
,
'softmax_simplifier'
)
# another commit that removes
if
0
:
@opt.register_specialize
@gof.local_optimizer
([
tensor
.
add
])
def
local_softmax_grad
(
node
):
'''dy*sm - DimShuffle{0,'x'}(sum{1}(dy*sm))*sm -> softmax_grad(dy,sm)'''
# TODO what if the signs are changed?
# TODO and if a scalar is distributed before each of the terms?
# TODO 'dy' could also be a product
if
node
.
op
==
tensor
.
add
and
node
.
out
.
ndim
==
2
:
add_inputs
=
node
.
inputs
# Trying to locate two nodes in the sum:
# dy * sm, prod_term
# - DimShuffle{0,'x'}(sum{1}(dy*sm))*sm
prod_term
=
None
other_terms
=
[]
# First, prod_term
for
add_in
in
add_inputs
:
if
(
add_in
.
owner
and
add_in
.
owner
.
op
==
tensor
.
mul
and
prod_term
is
None
):
mul_inputs
=
add_in
.
owner
.
inputs
if
(
len
(
mul_inputs
)
==
2
and
all
([
mul_in
.
ndim
==
2
for
mul_in
in
mul_inputs
])):
prod_term
=
add_in
else
:
other_terms
.
append
(
add_in
)
else
:
other_terms
.
append
(
add_in
)
if
prod_term
is
None
:
# print 'no prod_term'
return
assert
len
(
other_terms
)
==
len
(
add_inputs
)
-
1
ds_term
=
None
rest
=
[]
for
add_in
in
other_terms
:
if
add_in
.
owner
and
add_in
.
owner
.
op
==
tensor
.
neg
:
neg_input
=
add_in
.
owner
.
inputs
[
0
]
if
neg_input
.
owner
and
neg_input
.
owner
.
op
==
tensor
.
mul
:
mul2_inputs
=
neg_input
.
owner
.
inputs
if
len
(
mul2_inputs
)
!=
2
:
rest
.
append
(
add_in
)
# print 'len(mul2_inputs) =', len(mul2_inputs)
continue
# Try and find DimShuffle(Sum)
maybe_ds
=
None
for
i
,
mul2_in
in
enumerate
(
mul2_inputs
):
if
mul2_in
.
owner
and
isinstance
(
mul2_in
.
owner
.
op
,
elemwise
.
DimShuffle
):
maybe_ds
=
mul2_in
maybe_sm
=
mul2_inputs
[
1
-
i
]
# The other one
if
(
maybe_ds
is
None
or
maybe_ds
.
ndim
!=
2
or
maybe_sm
.
ndim
!=
2
):
rest
.
append
(
add_in
)
# print 'maybe_ds =', maybe_ds
# if maybe_ds:
# print 'maybe_ds.ndim =', maybe_ds.ndim, ', maybe_sm.ndim =', maybe_sm.ndim
continue
if
maybe_sm
is
mul_inputs
[
0
]:
maybe_dy
=
mul_inputs
[
1
]
elif
maybe_sm
is
mul_inputs
[
1
]:
maybe_dy
=
mul_inputs
[
0
]
else
:
rest
.
append
(
add_in
)
# print 'maybe_sm, maybe_dy =', maybe_sm, maybe_dy
# print 'mul_inputs =', mul_inputs
continue
ds_order
=
maybe_ds
.
owner
.
op
.
new_order
ds_input
=
maybe_ds
.
owner
.
inputs
[
0
]
axis
=
None
if
ds_input
.
owner
and
isinstance
(
ds_input
.
owner
.
op
,
elemwise
.
Sum
):
axis
=
ds_input
.
owner
.
op
.
axis
sum_input
=
ds_input
.
owner
.
inputs
[
0
]
if
((
ds_order
!=
(
0
,
'x'
))
or
(
axis
!=
(
1
,))
or
(
sum_input
is
not
prod_term
)):
rest
.
append
(
add_in
)
# print 'ds_order =', ds_order
# print 'axis =', axis
# if axis is not None:
# print 'sum_input =', sum_input, ', prod_term =', prod_term
# else:
# print 'ds_input.owner =', ds_input.owner
# print 'add_in =', add_in
continue
ds_term
=
add_in
else
:
# print 'neg_input.owner =', neg_input.owner
rest
.
append
(
add_in
)
else
:
# print 'add_in.owner =', add_in.owner
rest
.
append
(
add_in
)
if
ds_term
is
None
:
# print 'no ds_term'
return
if
len
(
rest
)
==
0
:
return
[
softmax_grad
(
maybe_dy
,
maybe_sm
)]
else
:
return
[
tensor
.
add
(
softmax_grad
(
maybe_dy
,
maybe_sm
),
*
rest
)]
class
CrossentropySoftmaxArgmax1HotWithBias
(
gof
.
Op
):
class
CrossentropySoftmaxArgmax1HotWithBias
(
gof
.
Op
):
"""
"""
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论