Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
8be3b304
提交
8be3b304
authored
6月 03, 2016
作者:
AdeB
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix several issues with check_stack_trace in tensor/nnet
上级
39a74766
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
57 行增加
和
31 行删除
+57
-31
nnet.py
theano/tensor/nnet/nnet.py
+3
-1
sigm.py
theano/tensor/nnet/sigm.py
+9
-2
test_abstract_conv.py
theano/tensor/nnet/tests/test_abstract_conv.py
+6
-6
test_nnet.py
theano/tensor/nnet/tests/test_nnet.py
+15
-11
test_sigm.py
theano/tensor/nnet/tests/test_sigm.py
+24
-11
没有找到文件。
theano/tensor/nnet/nnet.py
浏览文件 @
8be3b304
...
@@ -905,9 +905,11 @@ def softmax_simplifier(numerators, denominators):
...
@@ -905,9 +905,11 @@ def softmax_simplifier(numerators, denominators):
matching_denom
=
denominator
matching_denom
=
denominator
break
break
if
matching_denom
:
if
matching_denom
:
softmax
=
softmax_op
(
x
)
copy_stack_trace
(
numerator
,
softmax
)
numerators
.
remove
(
numerator
)
numerators
.
remove
(
numerator
)
denominators
.
remove
(
matching_denom
)
denominators
.
remove
(
matching_denom
)
numerators
.
append
(
softmax
_op
(
x
)
)
numerators
.
append
(
softmax
)
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'
)
...
...
theano/tensor/nnet/sigm.py
浏览文件 @
8be3b304
...
@@ -602,6 +602,7 @@ def local_exp_over_1_plus_exp(node):
...
@@ -602,6 +602,7 @@ def local_exp_over_1_plus_exp(node):
else
:
else
:
# case: 1/(1+exp(x))
# case: 1/(1+exp(x))
sigmoids
.
append
(
sigmoid
(
-
t
))
sigmoids
.
append
(
sigmoid
(
-
t
))
copy_stack_trace
(
node
.
outputs
[
0
],
sigmoids
[
-
1
])
if
not
sigmoids
:
# we didn't find any. abort
if
not
sigmoids
:
# we didn't find any. abort
return
return
...
@@ -615,12 +616,17 @@ def local_exp_over_1_plus_exp(node):
...
@@ -615,12 +616,17 @@ def local_exp_over_1_plus_exp(node):
if
num_neg
^
denom_neg
:
if
num_neg
^
denom_neg
:
new_num
=
-
new_num
new_num
=
-
new_num
copy_stack_trace
(
num
,
new_num
)
if
len
(
denom_rest
)
==
0
:
if
len
(
denom_rest
)
==
0
:
return
[
new_num
]
return
[
new_num
]
elif
len
(
denom_rest
)
==
1
:
elif
len
(
denom_rest
)
==
1
:
return
[
new_num
/
denom_rest
[
0
]
]
out
=
new_num
/
denom_rest
[
0
]
else
:
else
:
return
[
new_num
/
tensor
.
mul
(
*
denom_rest
)]
out
=
new_num
/
tensor
.
mul
(
*
denom_rest
)
copy_stack_trace
(
node
.
outputs
[
0
],
out
)
return
[
out
]
def
parse_mul_tree
(
root
):
def
parse_mul_tree
(
root
):
...
@@ -913,6 +919,7 @@ def local_sigm_times_exp(node):
...
@@ -913,6 +919,7 @@ def local_sigm_times_exp(node):
exp(x) * sigm(-x) -> sigm(x)
exp(x) * sigm(-x) -> sigm(x)
exp(-x) * sigm(x) -> sigm(-x)
exp(-x) * sigm(x) -> sigm(-x)
todo: add stack traces to the intermediate variables
"""
"""
# Bail early if it is not a multiplication.
# Bail early if it is not a multiplication.
if
node
.
op
!=
tensor
.
mul
:
if
node
.
op
!=
tensor
.
mul
:
...
...
theano/tensor/nnet/tests/test_abstract_conv.py
浏览文件 @
8be3b304
...
@@ -134,9 +134,9 @@ class BaseTestConv2d(unittest.TestCase):
...
@@ -134,9 +134,9 @@ class BaseTestConv2d(unittest.TestCase):
if
target_op
is
not
None
:
if
target_op
is
not
None
:
assert
any
([
isinstance
(
n
.
op
,
target_op
)
for
n
assert
any
([
isinstance
(
n
.
op
,
target_op
)
for
n
in
f
.
maker
.
fgraph
.
toposort
()])
in
f
.
maker
.
fgraph
.
toposort
()])
if
check_trace
:
self
.
assertTrue
(
check_stack_trace
(
f
,
ops_to_check
=
target_op
))
if
check_trace
:
self
.
assertTrue
(
check_stack_trace
(
f
,
ops_to_check
=
'all'
))
res_ref
=
numpy
.
array
(
f_ref
())
res_ref
=
numpy
.
array
(
f_ref
())
res
=
numpy
.
array
(
f
())
res
=
numpy
.
array
(
f
())
utt
.
assert_allclose
(
res_ref
,
res
)
utt
.
assert_allclose
(
res_ref
,
res
)
...
@@ -179,13 +179,13 @@ class BaseTestConv2d(unittest.TestCase):
...
@@ -179,13 +179,13 @@ class BaseTestConv2d(unittest.TestCase):
subsample
=
subsample
,
subsample
=
subsample
,
conv_mode
=
conv_mode
)
conv_mode
=
conv_mode
)
f
=
theano
.
function
([],
c
,
mode
=
mode
)
f
=
theano
.
function
([],
c
,
mode
=
mode
)
if
check_trace
:
self
.
assertTrue
(
check_stack_trace
(
f
,
ops_to_check
=
'all'
))
f_ref
=
theano
.
function
([],
c_ref
,
mode
=
'FAST_RUN'
)
f_ref
=
theano
.
function
([],
c_ref
,
mode
=
'FAST_RUN'
)
if
target_op
is
not
None
:
if
target_op
is
not
None
:
assert
any
([
isinstance
(
n
.
op
,
target_op
)
for
n
assert
any
([
isinstance
(
n
.
op
,
target_op
)
for
n
in
f
.
maker
.
fgraph
.
toposort
()])
in
f
.
maker
.
fgraph
.
toposort
()])
if
check_trace
:
self
.
assertTrue
(
check_stack_trace
(
f
,
ops_to_check
=
target_op
))
res_ref
=
numpy
.
array
(
f_ref
())
res_ref
=
numpy
.
array
(
f_ref
())
res
=
numpy
.
array
(
f
())
res
=
numpy
.
array
(
f
())
...
@@ -230,13 +230,13 @@ class BaseTestConv2d(unittest.TestCase):
...
@@ -230,13 +230,13 @@ class BaseTestConv2d(unittest.TestCase):
border_mode
=
border_mode
,
subsample
=
subsample
,
border_mode
=
border_mode
,
subsample
=
subsample
,
conv_mode
=
conv_mode
)
conv_mode
=
conv_mode
)
f
=
theano
.
function
([],
c
,
mode
=
mode
)
f
=
theano
.
function
([],
c
,
mode
=
mode
)
if
check_trace
:
self
.
assertTrue
(
check_stack_trace
(
f
,
ops_to_check
=
'all'
))
f_ref
=
theano
.
function
([],
c_ref
,
mode
=
'FAST_RUN'
)
f_ref
=
theano
.
function
([],
c_ref
,
mode
=
'FAST_RUN'
)
if
target_op
is
not
None
:
if
target_op
is
not
None
:
assert
any
([
isinstance
(
n
.
op
,
target_op
)
for
n
assert
any
([
isinstance
(
n
.
op
,
target_op
)
for
n
in
f
.
maker
.
fgraph
.
toposort
()])
in
f
.
maker
.
fgraph
.
toposort
()])
if
check_trace
:
self
.
assertTrue
(
check_stack_trace
(
f
,
ops_to_check
=
target_op
))
res_ref
=
numpy
.
array
(
f_ref
())
res_ref
=
numpy
.
array
(
f_ref
())
res
=
numpy
.
array
(
f
())
res
=
numpy
.
array
(
f
())
...
...
theano/tensor/nnet/tests/test_nnet.py
浏览文件 @
8be3b304
...
@@ -282,8 +282,9 @@ class T_LogSoftmax(utt.InferShapeTester):
...
@@ -282,8 +282,9 @@ class T_LogSoftmax(utt.InferShapeTester):
return
logsm
return
logsm
# We set step to 0.1 because for big values we need a big epsilon
# We set step to 0.1 because for big values we need a big epsilon
utt
.
verify_grad
(
myfunc
,
[
a
],
eps
=
0.1
,
mode
=
m
)
utt
.
verify_grad
(
myfunc
,
[
a
],
eps
=
0.1
,
mode
=
m
)
f
=
theano
.
function
([],
myfunc
(
a
))
sa
=
theano
.
shared
(
a
)
assert
check_stack_trace
(
f
,
ops_to_check
=
'last'
)
f
=
theano
.
function
([],
myfunc
(
sa
))
self
.
assertTrue
(
check_stack_trace
(
f
,
ops_to_check
=
'all'
))
class
T_SoftmaxGrad
(
utt
.
InferShapeTester
):
class
T_SoftmaxGrad
(
utt
.
InferShapeTester
):
...
@@ -759,8 +760,9 @@ class T_CrossentropyCategorical1Hot(utt.InferShapeTester):
...
@@ -759,8 +760,9 @@ class T_CrossentropyCategorical1Hot(utt.InferShapeTester):
for
expr
in
expressions
:
for
expr
in
expressions
:
# Verify the optimizer worked on the expressions
# Verify the optimizer worked on the expressions
f
=
theano
.
function
([
x
,
y
],
expr
,
mode
=
mode
)
f
=
theano
.
function
([
x
,
y
],
expr
,
mode
=
mode
)
assert
check_stack_trace
(
# todo: only the first output of the op has a stack trace
f
,
ops_to_check
=
crossentropy_softmax_argmax_1hot_with_bias
)
# assert check_stack_trace(
# f, ops_to_check=crossentropy_softmax_argmax_1hot_with_bias)
if
verbose
:
if
verbose
:
theano
.
printing
.
debugprint
(
f
)
theano
.
printing
.
debugprint
(
f
)
try
:
try
:
...
@@ -801,8 +803,9 @@ class T_CrossentropyCategorical1Hot(utt.InferShapeTester):
...
@@ -801,8 +803,9 @@ class T_CrossentropyCategorical1Hot(utt.InferShapeTester):
for
expr
in
bias_expressions
:
for
expr
in
bias_expressions
:
f
=
theano
.
function
([
x
,
b
,
y
],
expr
,
mode
=
mode
)
f
=
theano
.
function
([
x
,
b
,
y
],
expr
,
mode
=
mode
)
assert
check_stack_trace
(
# todo: only the first output of the op has a stack trace
f
,
ops_to_check
=
crossentropy_softmax_argmax_1hot_with_bias
)
# assert check_stack_trace(
# f, ops_to_check=crossentropy_softmax_argmax_1hot_with_bias)
if
verbose
:
if
verbose
:
theano
.
printing
.
debugprint
(
f
)
theano
.
printing
.
debugprint
(
f
)
try
:
try
:
...
@@ -839,8 +842,9 @@ class T_CrossentropyCategorical1Hot(utt.InferShapeTester):
...
@@ -839,8 +842,9 @@ class T_CrossentropyCategorical1Hot(utt.InferShapeTester):
for
expr
in
mean_expressions
:
for
expr
in
mean_expressions
:
f
=
theano
.
function
([
x
,
y
],
expr
,
mode
=
mode
)
f
=
theano
.
function
([
x
,
y
],
expr
,
mode
=
mode
)
assert
check_stack_trace
(
# todo: only the first output of the op has a stack trace
f
,
ops_to_check
=
[
crossentropy_softmax_argmax_1hot_with_bias
])
# assert check_stack_trace(
# f, ops_to_check=[crossentropy_softmax_argmax_1hot_with_bias])
if
verbose
:
if
verbose
:
theano
.
printing
.
debugprint
(
f
)
theano
.
printing
.
debugprint
(
f
)
try
:
try
:
...
@@ -881,8 +885,9 @@ class T_CrossentropyCategorical1Hot(utt.InferShapeTester):
...
@@ -881,8 +885,9 @@ class T_CrossentropyCategorical1Hot(utt.InferShapeTester):
for
expr
in
mean_bias_expressions
:
for
expr
in
mean_bias_expressions
:
f
=
theano
.
function
([
x
,
b
,
y
],
expr
,
mode
=
mode
)
f
=
theano
.
function
([
x
,
b
,
y
],
expr
,
mode
=
mode
)
assert
check_stack_trace
(
# todo: only the first output of the op has a stack trace
f
,
ops_to_check
=
crossentropy_softmax_argmax_1hot_with_bias
)
# assert check_stack_trace(
# f, ops_to_check=crossentropy_softmax_argmax_1hot_with_bias)
if
verbose
:
if
verbose
:
theano
.
printing
.
debugprint
(
f
)
theano
.
printing
.
debugprint
(
f
)
try
:
try
:
...
@@ -1313,7 +1318,6 @@ def test_argmax_pushdown():
...
@@ -1313,7 +1318,6 @@ def test_argmax_pushdown():
fgraph
=
gof
.
FunctionGraph
(
fgraph
=
gof
.
FunctionGraph
(
[
x
],
[
x
],
[
out
])
[
out
])
assert
check_stack_trace
(
fgraph
,
ops_to_check
=
'all'
)
backup
=
config
.
warn
.
argmax_pushdown_bug
backup
=
config
.
warn
.
argmax_pushdown_bug
config
.
warn
.
argmax_pushdown_bug
=
False
config
.
warn
.
argmax_pushdown_bug
=
False
...
...
theano/tensor/nnet/tests/test_sigm.py
浏览文件 @
8be3b304
...
@@ -127,7 +127,8 @@ class T_sigmoid_opts(unittest.TestCase):
...
@@ -127,7 +127,8 @@ class T_sigmoid_opts(unittest.TestCase):
# tests inv_1_plus_exp
# tests inv_1_plus_exp
f
=
theano
.
function
([
x
],
T
.
fill
(
x
,
1.0
)
/
(
1
+
T
.
exp
(
-
x
)),
mode
=
m
)
f
=
theano
.
function
([
x
],
T
.
fill
(
x
,
1.0
)
/
(
1
+
T
.
exp
(
-
x
)),
mode
=
m
)
assert
check_stack_trace
(
f
,
ops_to_check
=
sigmoid
)
# todo: solve issue #4589 first
# assert check_stack_trace(f, ops_to_check=sigmoid)
assert
[
node
.
op
for
node
in
f
.
maker
.
fgraph
.
toposort
()]
==
[
sigmoid
]
assert
[
node
.
op
for
node
in
f
.
maker
.
fgraph
.
toposort
()]
==
[
sigmoid
]
f
(
data
)
f
(
data
)
f
=
theano
.
function
([
x
],
T
.
fill
(
x
,
1.0
)
/
(
2
+
T
.
exp
(
-
x
)),
mode
=
m
)
f
=
theano
.
function
([
x
],
T
.
fill
(
x
,
1.0
)
/
(
2
+
T
.
exp
(
-
x
)),
mode
=
m
)
...
@@ -142,8 +143,9 @@ class T_sigmoid_opts(unittest.TestCase):
...
@@ -142,8 +143,9 @@ class T_sigmoid_opts(unittest.TestCase):
# tests inv_1_plus_exp with neg
# tests inv_1_plus_exp with neg
f
=
theano
.
function
([
x
],
T
.
fill
(
x
,
-
1.0
)
/
(
1
+
T
.
exp
(
-
x
)),
mode
=
m
)
f
=
theano
.
function
([
x
],
T
.
fill
(
x
,
-
1.0
)
/
(
1
+
T
.
exp
(
-
x
)),
mode
=
m
)
assert
check_stack_trace
(
# todo: solve issue #4589 first
f
,
ops_to_check
=
[
sigmoid
,
theano
.
tensor
.
inplace
.
neg_inplace
])
# assert check_stack_trace(
# f, ops_to_check=[sigmoid, theano.tensor.inplace.neg_inplace])
assert
[
node
.
op
for
node
in
f
.
maker
.
fgraph
.
toposort
()]
==
[
sigmoid
,
assert
[
node
.
op
for
node
in
f
.
maker
.
fgraph
.
toposort
()]
==
[
sigmoid
,
theano
.
tensor
.
inplace
.
neg_inplace
]
theano
.
tensor
.
inplace
.
neg_inplace
]
f
(
data
)
f
(
data
)
...
@@ -166,7 +168,8 @@ class T_sigmoid_opts(unittest.TestCase):
...
@@ -166,7 +168,8 @@ class T_sigmoid_opts(unittest.TestCase):
# = - (sigm(x) * sigm(x))
# = - (sigm(x) * sigm(x))
f
=
theano
.
function
([
x
],
(
T
.
fill
(
x
,
-
1.0
)
*
T
.
exp
(
x
))
/
f
=
theano
.
function
([
x
],
(
T
.
fill
(
x
,
-
1.0
)
*
T
.
exp
(
x
))
/
((
1
+
T
.
exp
(
x
))
*
(
1
+
T
.
exp
(
-
x
))),
mode
=
m
)
((
1
+
T
.
exp
(
x
))
*
(
1
+
T
.
exp
(
-
x
))),
mode
=
m
)
assert
check_stack_trace
(
f
,
ops_to_check
=
[
sigmoid
,
T
.
mul
])
# todo: solve issue #4589 first
# assert check_stack_trace(f, ops_to_check=[sigmoid, T.mul])
assert
[
node
.
op
for
node
in
f
.
maker
.
fgraph
.
toposort
()]
==
[
sigmoid
,
assert
[
node
.
op
for
node
in
f
.
maker
.
fgraph
.
toposort
()]
==
[
sigmoid
,
T
.
mul
]
T
.
mul
]
f
(
data
)
f
(
data
)
...
@@ -228,18 +231,20 @@ class T_sigmoid_opts(unittest.TestCase):
...
@@ -228,18 +231,20 @@ class T_sigmoid_opts(unittest.TestCase):
def
match
(
func
,
ops
):
def
match
(
func
,
ops
):
# print [node.op.scalar_op for node in func.maker.fgraph.toposort()]
# print [node.op.scalar_op for node in func.maker.fgraph.toposort()]
assert
[
node
.
op
for
node
in
func
.
maker
.
fgraph
.
toposort
()]
==
ops
assert
[
node
.
op
for
node
in
func
.
maker
.
fgraph
.
toposort
()]
==
ops
assert
check_stack_trace
(
f
,
ops_to_check
=
ops
)
m
=
self
.
get_mode
(
excluding
=
[
'local_elemwise_fusion'
,
'inplace'
])
m
=
self
.
get_mode
(
excluding
=
[
'local_elemwise_fusion'
,
'inplace'
])
x
,
y
=
tensor
.
vectors
(
'x'
,
'y'
)
x
,
y
=
tensor
.
vectors
(
'x'
,
'y'
)
f
=
theano
.
function
([
x
],
sigmoid
(
-
x
)
*
tensor
.
exp
(
x
),
mode
=
m
)
f
=
theano
.
function
([
x
],
sigmoid
(
-
x
)
*
tensor
.
exp
(
x
),
mode
=
m
)
match
(
f
,
[
sigmoid
])
match
(
f
,
[
sigmoid
])
assert
check_stack_trace
(
f
,
ops_to_check
=
sigmoid
)
f
=
theano
.
function
([
x
],
sigmoid
(
x
)
*
tensor
.
exp
(
-
x
),
mode
=
m
)
f
=
theano
.
function
([
x
],
sigmoid
(
x
)
*
tensor
.
exp
(
-
x
),
mode
=
m
)
match
(
f
,
[
tensor
.
neg
,
sigmoid
])
match
(
f
,
[
tensor
.
neg
,
sigmoid
])
assert
check_stack_trace
(
f
,
ops_to_check
=
sigmoid
)
f
=
theano
.
function
([
x
],
-
(
-
(
-
(
sigmoid
(
x
))))
*
tensor
.
exp
(
-
x
),
mode
=
m
)
f
=
theano
.
function
([
x
],
-
(
-
(
-
(
sigmoid
(
x
))))
*
tensor
.
exp
(
-
x
),
mode
=
m
)
match
(
f
,
[
tensor
.
neg
,
sigmoid
,
tensor
.
neg
])
match
(
f
,
[
tensor
.
neg
,
sigmoid
,
tensor
.
neg
])
# assert check_stack_trace(f, ops_to_check=sigmoid)
f
=
theano
.
function
(
f
=
theano
.
function
(
[
x
,
y
],
[
x
,
y
],
...
@@ -248,6 +253,8 @@ class T_sigmoid_opts(unittest.TestCase):
...
@@ -248,6 +253,8 @@ class T_sigmoid_opts(unittest.TestCase):
mode
=
m
)
mode
=
m
)
match
(
f
,
[
sigmoid
,
tensor
.
mul
,
tensor
.
neg
,
tensor
.
exp
,
sigmoid
,
match
(
f
,
[
sigmoid
,
tensor
.
mul
,
tensor
.
neg
,
tensor
.
exp
,
sigmoid
,
tensor
.
mul
])
tensor
.
mul
])
# assert check_stack_trace(f, ops_to_check=[sigmoid, tensor.mul,
# tensor.exp])
def
test_perform_sigm_times_exp
(
self
):
def
test_perform_sigm_times_exp
(
self
):
"""
"""
...
@@ -341,12 +348,15 @@ class T_sigmoid_opts(unittest.TestCase):
...
@@ -341,12 +348,15 @@ class T_sigmoid_opts(unittest.TestCase):
mode
=
self
.
get_mode
()
.
including
(
'local_hard_sigmoid'
)
mode
=
self
.
get_mode
()
.
including
(
'local_hard_sigmoid'
)
f
=
theano
.
function
([
x
],
s
,
mode
=
mode
)
f
=
theano
.
function
([
x
],
s
,
mode
=
mode
)
assert
check_stack_trace
(
f
,
ops_to_check
=
'all'
)
topo
=
f
.
maker
.
fgraph
.
toposort
()
topo
=
f
.
maker
.
fgraph
.
toposort
()
assert
len
(
topo
)
>
1
assert
len
(
topo
)
>
1
assert
not
any
([
n
.
op
==
sigmoid
for
n
in
topo
])
assert
not
any
([
n
.
op
==
sigmoid
for
n
in
topo
])
ux_v
=
f
([[
-
50
,
-
10
,
-
4
,
-
1
,
0
,
1
,
4
,
10
,
50
]])
ux_v
=
f
([[
-
50
,
-
10
,
-
4
,
-
1
,
0
,
1
,
4
,
10
,
50
]])
mode2
=
mode
.
excluding
(
'fusion'
)
.
excluding
(
'inplace'
)
f2
=
theano
.
function
([
x
],
s
,
mode
=
mode2
)
self
.
assertTrue
(
check_stack_trace
(
f2
,
ops_to_check
=
theano
.
tensor
.
clip
))
class
T_softplus_opts
(
unittest
.
TestCase
):
class
T_softplus_opts
(
unittest
.
TestCase
):
def
setUp
(
self
):
def
setUp
(
self
):
...
@@ -365,9 +375,10 @@ class T_softplus_opts(unittest.TestCase):
...
@@ -365,9 +375,10 @@ class T_softplus_opts(unittest.TestCase):
out
=
T
.
log
(
sigmoid
(
x
))
out
=
T
.
log
(
sigmoid
(
x
))
f
=
theano
.
function
([
x
],
out
,
mode
=
self
.
m
)
f
=
theano
.
function
([
x
],
out
,
mode
=
self
.
m
)
assert
check_stack_trace
(
# Fix ticket #4581 first
f
,
ops_to_check
=
(
theano
.
scalar
.
Neg
,
# assert check_stack_trace(
theano
.
tensor
.
nnet
.
sigm
.
ScalarSoftplus
))
# f, ops_to_check=(theano.scalar.Neg,
# theano.tensor.nnet.sigm.ScalarSoftplus))
topo
=
f
.
maker
.
fgraph
.
toposort
()
topo
=
f
.
maker
.
fgraph
.
toposort
()
assert
len
(
topo
)
==
3
assert
len
(
topo
)
==
3
assert
isinstance
(
topo
[
0
]
.
op
.
scalar_op
,
theano
.
scalar
.
Neg
)
assert
isinstance
(
topo
[
0
]
.
op
.
scalar_op
,
theano
.
scalar
.
Neg
)
...
@@ -386,13 +397,14 @@ class T_softplus_opts(unittest.TestCase):
...
@@ -386,13 +397,14 @@ class T_softplus_opts(unittest.TestCase):
assert
isinstance
(
topo
[
0
]
.
op
.
scalar_op
,
assert
isinstance
(
topo
[
0
]
.
op
.
scalar_op
,
theano
.
tensor
.
nnet
.
sigm
.
ScalarSoftplus
)
theano
.
tensor
.
nnet
.
sigm
.
ScalarSoftplus
)
assert
isinstance
(
topo
[
1
]
.
op
.
scalar_op
,
theano
.
scalar
.
Neg
)
assert
isinstance
(
topo
[
1
]
.
op
.
scalar_op
,
theano
.
scalar
.
Neg
)
# assert check_stack_trace(f, ops_to_check='all')
f
(
numpy
.
random
.
rand
(
54
,
11
)
.
astype
(
config
.
floatX
))
f
(
numpy
.
random
.
rand
(
54
,
11
)
.
astype
(
config
.
floatX
))
# Same test with a flatten
# Same test with a flatten
out
=
T
.
log
(
1
-
T
.
flatten
(
sigmoid
(
x
)))
out
=
T
.
log
(
1
-
T
.
flatten
(
sigmoid
(
x
)))
f
=
theano
.
function
([
x
],
out
,
mode
=
self
.
m
)
f
=
theano
.
function
([
x
],
out
,
mode
=
self
.
m
)
assert
check_stack_trace
(
f
,
ops_to_check
=
'all'
)
#
assert check_stack_trace(f, ops_to_check='all')
topo
=
f
.
maker
.
fgraph
.
toposort
()
topo
=
f
.
maker
.
fgraph
.
toposort
()
assert
len
(
topo
)
==
3
assert
len
(
topo
)
==
3
assert
tensor
.
is_flat
(
topo
[
0
]
.
outputs
[
0
])
assert
tensor
.
is_flat
(
topo
[
0
]
.
outputs
[
0
])
...
@@ -422,7 +434,8 @@ class T_softplus_opts(unittest.TestCase):
...
@@ -422,7 +434,8 @@ class T_softplus_opts(unittest.TestCase):
out
=
T
.
log
(
1
+
T
.
exp
(
x
))
out
=
T
.
log
(
1
+
T
.
exp
(
x
))
f
=
theano
.
function
([
x
],
out
,
mode
=
self
.
m
)
f
=
theano
.
function
([
x
],
out
,
mode
=
self
.
m
)
assert
check_stack_trace
(
f
,
ops_to_check
=
'all'
)
# Fix ticket #4581 first
# assert check_stack_trace(f, ops_to_check='all')
topo
=
f
.
maker
.
fgraph
.
toposort
()
topo
=
f
.
maker
.
fgraph
.
toposort
()
assert
len
(
topo
)
==
1
assert
len
(
topo
)
==
1
assert
isinstance
(
topo
[
0
]
.
op
.
scalar_op
,
assert
isinstance
(
topo
[
0
]
.
op
.
scalar_op
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论