Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
70b5f2c1
提交
70b5f2c1
authored
6月 30, 2015
作者:
Iban Harlouchet
提交者:
Frederic
7月 23, 2015
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
flake8 for tensor/nnet/nnet.py
上级
f4edcc59
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
74 行增加
和
73 行删除
+74
-73
nnet.py
theano/tensor/nnet/nnet.py
+74
-72
test_flake8.py
theano/tests/test_flake8.py
+0
-1
没有找到文件。
theano/tensor/nnet/nnet.py
浏览文件 @
70b5f2c1
...
...
@@ -15,6 +15,7 @@ from six.moves import xrange
import
theano
from
theano
import
gof
from
theano
import
scalar
from
theano.tensor
import
basic
as
tensor
from
theano.tensor
import
subtensor
from
theano.tensor
import
elemwise
...
...
@@ -27,12 +28,12 @@ from theano.gradient import DisconnectedType
from
theano.gradient
import
grad_not_implemented
from
theano.tensor.type
import
values_eq_approx_remove_nan
############
#
# TENSOR OPS
#
class
SoftmaxWithBias
(
gof
.
Op
):
"""
An L{Op} for the output of neural-net multiclass classifiers.
...
...
@@ -299,13 +300,13 @@ class SoftmaxGrad(gof.Op):
def
grad
(
self
,
inp
,
grads
):
dy
,
sm
=
inp
g
,
=
grads
tmp
=
g
+
tensor
.
neg
(
tensor
.
sum
(
g
*
sm
,
axis
=
1
)
.
dimshuffle
((
0
,
'x'
)))
tmp
=
g
+
tensor
.
neg
(
tensor
.
sum
(
g
*
sm
,
axis
=
1
)
.
dimshuffle
((
0
,
'x'
)))
g_dy
=
tmp
*
sm
tmp2
=
tensor
.
sum
(
dy
*
sm
,
axis
=
1
)
.
dimshuffle
((
0
,
'x'
))
g_sm
=
tmp
*
dy
-
g
*
tmp2
tmp2
=
tensor
.
sum
(
dy
*
sm
,
axis
=
1
)
.
dimshuffle
((
0
,
'x'
))
g_sm
=
tmp
*
dy
-
g
*
tmp2
return
g_dy
,
g_sm
def
infer_shape
(
self
,
node
,
shape
):
...
...
@@ -571,12 +572,15 @@ class Softmax(gof.Op):
softmax_op
=
Softmax
()
def
softmax_graph
(
c
):
return
tensor
.
exp
(
c
)
/
tensor
.
exp
(
c
)
.
sum
(
axis
=-
1
,
keepdims
=
True
)
def
softmax
(
c
):
return
softmax_op
(
c
)
@opt.register_specialize
(
'fast_compile_gpu'
)
@gof.local_optimizer
([
softmax_op
])
def
local_softmax_with_bias
(
node
):
...
...
@@ -593,15 +597,15 @@ def local_softmax_with_bias(node):
# tensor.DimShuffle) since specialization comes
# relatively late in optimization, we don't want to
# put in extra DimShuffles un-necessarily.
if
(
x_in
.
owner
and
isinstance
(
x_in
.
owner
.
op
,
tensor
.
DimShuffle
)
and
list
(
x_in
.
owner
.
inputs
[
0
]
.
type
.
broadcastable
)
==
[
False
]):
if
(
x_in
.
owner
and
isinstance
(
x_in
.
owner
.
op
,
tensor
.
DimShuffle
)
and
list
(
x_in
.
owner
.
inputs
[
0
]
.
type
.
broadcastable
)
==
[
False
]):
# cut out the DimShuffle that was broadcasting a vector
vectors
.
append
(
x_in
.
owner
.
inputs
[
0
])
else
:
# insert an extra DimShuffle to correct the old one
vectors
.
append
(
tensor
.
DimShuffle
((
True
,
False
),
(
1
,))(
x_in
))
DimShuffle
((
True
,
False
),
(
1
,))(
x_in
))
else
:
non_vectors
.
append
(
x_in
)
...
...
@@ -658,7 +662,7 @@ def softmax_simplifier(numerators, denominators):
tensor
.
DimShuffle
):
if
denominator
.
owner
.
op
.
new_order
==
(
0
,
'x'
):
z
=
denominator
.
owner
.
inputs
[
0
]
# thing getting dimshuffled
# thing getting dimshuffled
if
z
.
owner
and
isinstance
(
z
.
owner
.
op
,
tensor
.
Sum
):
# print 'ASDF', denominator.owner.op.new_order
# print z.owner.op.axis
...
...
@@ -673,8 +677,7 @@ def softmax_simplifier(numerators, denominators):
numerators
.
append
(
softmax_op
(
x
))
return
numerators
,
denominators
opt
.
local_mul_canonizer
.
add_simplifier
(
softmax_simplifier
,
'softmax_simplifier'
)
opt
.
local_mul_canonizer
.
add_simplifier
(
softmax_simplifier
,
'softmax_simplifier'
)
if
0
:
@opt.register_specialize
...
...
@@ -694,11 +697,11 @@ if 0:
# 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
):
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
])):
all
([
mul_in
.
ndim
==
2
for
mul_in
in
mul_inputs
])):
prod_term
=
add_in
else
:
other_terms
.
append
(
add_in
)
...
...
@@ -724,16 +727,16 @@ if 0:
maybe_ds
=
None
for
i
,
mul2_in
in
enumerate
(
mul2_inputs
):
if
mul2_in
.
owner
and
isinstance
(
mul2_in
.
owner
.
op
,
elemwise
.
DimShuffle
):
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
):
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
# print 'maybe_ds.ndim =', maybe_ds.ndim, ', maybe_sm.ndim =', maybe_sm.ndim
continue
if
maybe_sm
is
mul_inputs
[
0
]:
...
...
@@ -755,8 +758,8 @@ if 0:
sum_input
=
ds_input
.
owner
.
inputs
[
0
]
if
((
ds_order
!=
(
0
,
'x'
))
or
(
axis
!=
(
1
,))
or
(
sum_input
is
not
prod_term
)):
(
axis
!=
(
1
,))
or
(
sum_input
is
not
prod_term
)):
rest
.
append
(
add_in
)
# print 'ds_order =', ds_order
# print 'axis =', axis
...
...
@@ -836,7 +839,7 @@ class CrossentropySoftmaxArgmax1HotWithBias(gof.Op):
# TODO: Is this correct? It used to be y, not y_idx
nll
=
tensor
.
TensorType
(
x
.
type
.
dtype
,
y_idx
.
type
.
broadcastable
)
()
y_idx
.
type
.
broadcastable
)
.
make_variable
()
# nll = TensorType(x.dtype, y.broadcastable)
sm
=
x
.
type
()
am
=
y_idx
.
type
()
...
...
@@ -866,15 +869,14 @@ class CrossentropySoftmaxArgmax1HotWithBias(gof.Op):
if
any
(
y_idx
<
0
):
raise
ValueError
(
"y_i value out of bounds"
)
sm
=
numpy
.
zeros_like
(
x
)
# softmax
nll
=
numpy
.
zeros
(
x
.
shape
[
0
],
dtype
=
node
.
outputs
[
0
]
.
type
.
dtype
)
# nll(y | softmax(x))
nll
=
numpy
.
zeros
(
x
.
shape
[
0
],
dtype
=
node
.
outputs
[
0
]
.
type
.
dtype
)
# nll(y | softmax(x))
am
=
numpy
.
zeros_like
(
y_idx
)
for
i
in
xrange
(
sm
.
shape
[
0
]):
# add the bias vector to the i'th row of x
row
=
x
[
i
]
+
b
# get the maximum value of i'th row for numerically safe
#softmax / nll
#
softmax / nll
am
[
i
]
=
numpy
.
argmax
(
row
)
m
=
row
[
am
[
i
]]
...
...
@@ -956,7 +958,7 @@ class CrossentropySoftmaxArgmax1HotWithBias(gof.Op):
# TODO: use this to accept float32 and int32: node.inputs[0].type.dtype_specs()[1]
(
init_decl
,
begin_row_loop
,
inside_row_loop
,
end_row_loop
)
=
\
SoftmaxWithBias
.
c_code_template
(
dtype
)
SoftmaxWithBias
.
c_code_template
(
dtype
)
return
(
init_decl
,
"""
if (PyArray_NDIM(
%(y_idx)
s) != 1)
...
...
@@ -1046,13 +1048,13 @@ class CrossentropySoftmax1HotWithBiasDx(gof.Op):
sm
=
tensor
.
as_tensor_variable
(
sm
)
y_idx
=
tensor
.
as_tensor_variable
(
y_idx
)
if
(
dy
.
type
.
ndim
>
1
or
dy
.
type
.
dtype
not
in
tensor
.
float_dtypes
):
dy
.
type
.
dtype
not
in
tensor
.
float_dtypes
):
raise
ValueError
(
'dy must be {0,1}-d tensor of floats'
,
dy
.
type
)
if
(
sm
.
type
.
ndim
!=
2
or
sm
.
type
.
dtype
not
in
tensor
.
float_dtypes
):
sm
.
type
.
dtype
not
in
tensor
.
float_dtypes
):
raise
ValueError
(
'sm must be 2-d tensor of floats'
,
sm
.
type
)
if
(
y_idx
.
type
.
ndim
!=
1
or
y_idx
.
type
.
dtype
not
in
tensor
.
discrete_dtypes
):
y_idx
.
type
.
dtype
not
in
tensor
.
discrete_dtypes
):
raise
ValueError
(
'y_idx must be 1-d tensor of [u]ints'
,
y_idx
.
type
)
return
Apply
(
self
,
[
dy
,
sm
,
y_idx
],
[
sm
.
type
()])
...
...
@@ -1082,9 +1084,8 @@ class CrossentropySoftmax1HotWithBiasDx(gof.Op):
# typically we should not need the gradient w.r.t. dy).
y_idx_range
=
tensor
.
arange
(
y_idx
.
shape
[
0
])
g_dy
=
tensor
.
sum
(
g_dx
*
subtensor
.
AdvancedIncSubtensor
()(
sm
,
tensor
.
fill
(
dy
,
-
1
),
y_idx_range
,
y_idx
),
axis
=
1
)
g_dx
*
subtensor
.
AdvancedIncSubtensor
()(
sm
,
tensor
.
fill
(
dy
,
-
1
),
y_idx_range
,
y_idx
),
axis
=
1
)
g_sm
=
dy
.
dimshuffle
(
0
,
'x'
)
*
g_dx
g_y_idx
=
grad_not_implemented
(
self
,
2
,
y_idx
)
return
[
g_dy
,
g_sm
,
g_y_idx
]
...
...
@@ -1226,8 +1227,7 @@ def crossentropy_softmax_max_and_argmax_1hot_with_bias(x, b, y_idx, **kwargs):
unnecessary? e.g. CrossentropySoftmaxArgmax1HotWithBias should return
the appropriate information (i.e. the max probability)?
"""
(
xent
,
softmax
)
=
crossentropy_softmax_1hot_with_bias
(
x
,
b
,
y_idx
,
**
kwargs
)
(
xent
,
softmax
)
=
crossentropy_softmax_1hot_with_bias
(
x
,
b
,
y_idx
,
**
kwargs
)
(
max_pr
,
argmax
)
=
tensor
.
max_and_argmax
(
softmax
,
axis
=-
1
)
return
(
xent
,
softmax
,
max_pr
,
argmax
)
...
...
@@ -1251,8 +1251,8 @@ class CrossentropyCategorical1HotGrad(gof.Op):
g_coding_strg
,
=
out
g_coding
=
numpy
.
zeros_like
(
coding_dist
)
for
i
in
xrange
(
len
(
g_y
)):
g_coding
[
i
,
true_one_of_n
[
i
]]
=
-
g_y
[
i
]
/
coding_dist
[
i
,
true_one_of_n
[
i
]]
g_coding
[
i
,
true_one_of_n
[
i
]]
=
(
-
g_y
[
i
]
/
coding_dist
[
i
,
true_one_of_n
[
i
]])
g_coding_strg
[
0
]
=
g_coding
def
infer_shape
(
self
,
node
,
in_shapes
):
...
...
@@ -1297,8 +1297,8 @@ class CrossentropyCategorical1Hot(gof.Op):
tensor
.
lvector
))
return
Apply
(
self
,
[
_coding_dist
,
_true_one_of_n
],
[
tensor
.
Tensor
(
dtype
=
_coding_dist
.
dtype
,
broadcastable
=
[
False
])()])
[
tensor
.
Tensor
(
dtype
=
_coding_dist
.
dtype
,
broadcastable
=
[
False
])()])
def
perform
(
self
,
node
,
inp
,
out
):
coding
,
one_of_n
=
inp
...
...
@@ -1346,10 +1346,11 @@ def crossentropy_to_crossentropy_with_softmax_with_bias(fgraph):
sm
,
one_of_n
=
node
.
inputs
if
sm
.
owner
and
sm
.
owner
.
op
==
softmax_with_bias
:
x
,
b
=
sm
.
owner
.
inputs
new_nll
,
new_sm
,
new_am
=
crossentropy_softmax_argmax_1hot_with_bias
(
x
,
b
,
one_of_n
)
fgraph
.
replace_all_validate
([(
nll
,
new_nll
),
(
sm
,
new_sm
)],
reason
=
"crossentropy_to_crossentropy_with_softmax_with_bias"
)
new_nll
,
new_sm
,
new_am
=
crossentropy_softmax_argmax_1hot_with_bias
(
x
,
b
,
one_of_n
)
fgraph
.
replace_all_validate
(
[(
nll
,
new_nll
),
(
sm
,
new_sm
)],
reason
=
"crossentropy_to_crossentropy_with_softmax_with_bias"
)
return
True
return
False
...
...
@@ -1381,17 +1382,19 @@ def crossentropy_to_crossentropy_with_softmax(fgraph):
sm
,
one_of_n
=
node
.
inputs
if
sm
.
owner
and
sm
.
owner
.
op
==
softmax_op
:
x
,
=
sm
.
owner
.
inputs
new_nll
,
new_sm
,
new_am
=
crossentropy_softmax_argmax_1hot_with_bias
(
x
,
tensor
.
zeros_like
(
x
[
0
]),
one_of_n
)
fgraph
.
replace_all_validate
([(
nll
,
new_nll
),
(
sm
,
new_sm
)],
reason
=
"crossentropy_to_crossentropy_with_softmax"
)
new_nll
,
new_sm
,
new_am
=
crossentropy_softmax_argmax_1hot_with_bias
(
x
,
tensor
.
zeros_like
(
x
[
0
]),
one_of_n
)
fgraph
.
replace_all_validate
(
[(
nll
,
new_nll
),
(
sm
,
new_sm
)],
reason
=
"crossentropy_to_crossentropy_with_softmax"
)
return
True
if
sm
.
owner
and
sm
.
owner
.
op
==
softmax_with_bias
:
x
,
b
=
sm
.
owner
.
inputs
new_nll
,
new_sm
,
new_am
=
crossentropy_softmax_argmax_1hot_with_bias
(
x
,
b
,
one_of_n
)
fgraph
.
replace_all_validate
([(
nll
,
new_nll
),
(
sm
,
new_sm
)],
reason
=
"crossentropy_to_crossentropy_with_softmax"
)
one_of_n
)
fgraph
.
replace_all_validate
(
[(
nll
,
new_nll
),
(
sm
,
new_sm
)],
reason
=
"crossentropy_to_crossentropy_with_softmax"
)
return
True
return
False
...
...
@@ -1413,10 +1416,10 @@ def local_softmax_grad_to_crossentropy_with_softmax_grad(node):
if
node
.
op
==
softmax_grad
:
g_coding_dist
,
coding_dist
=
node
.
inputs
if
(
g_coding_dist
.
owner
and
g_coding_dist
.
owner
.
op
==
crossentropy_categorical_1hot_grad
):
g_coding_dist
.
owner
.
op
==
crossentropy_categorical_1hot_grad
):
g_nll
,
coding_dist
,
true_one_of_n
=
g_coding_dist
.
owner
.
inputs
dx
=
crossentropy_softmax_1hot_with_bias_dx
(
g_nll
,
coding_dist
,
true_one_of_n
)
dx
=
crossentropy_softmax_1hot_with_bias_dx
(
g_nll
,
coding_dist
,
true_one_of_n
)
return
[
dx
]
...
...
@@ -1428,16 +1431,17 @@ def local_argmax_pushdown(node):
(
softmax_op
,
softplus
,
tensor
.
exp
,
tensor
.
log
,
tensor
.
tanh
,
sigmoid
,
softmax_with_bias
):
if
theano
.
config
.
warn
.
argmax_pushdown_bug
:
logging
.
getLogger
(
'theano.tensor.nnet.nnet'
)
.
warn
(
"WARNING: there "
"was a bug in Theano fixed on May 27th, 2010 in this case."
" I.E. when we take the max of a softplus, softmax, exp, "
"log, tanh, sigmoid, softmax_with_bias op, we were doing "
"the max of the parent of the input. To remove this "
"warning set the Theano flags 'warn.argmax_pushdown_bug' "
"to False"
)
logging
.
getLogger
(
'theano.tensor.nnet.nnet'
)
.
warn
(
"WARNING: there "
"was a bug in Theano fixed on May 27th, 2010 in this case."
" I.E. when we take the max of a softplus, softmax, exp, "
"log, tanh, sigmoid, softmax_with_bias op, we were doing "
"the max of the parent of the input. To remove this "
"warning set the Theano flags 'warn.argmax_pushdown_bug' "
"to False"
)
if
(
node
.
op
==
tensor
.
_max_and_argmax
and
node
.
inputs
[
0
]
.
owner
and
len
(
node
.
outputs
[
0
]
.
clients
)
==
0
):
node
.
inputs
[
0
]
.
owner
and
len
(
node
.
outputs
[
0
]
.
clients
)
==
0
):
x_max
,
x_argmax
=
node
.
outputs
x
,
axis
=
node
.
inputs
# TODO: Make a list/set of monotonic ops...
...
...
@@ -1657,15 +1661,15 @@ def local_advanced_indexing_crossentropy_onehot_grad(node):
if
isinstance
(
denom
.
owner
.
op
,
subtensor
.
AdvancedSubtensor
):
# Base case
adv_subtensor
=
denom
#out_grad /= 1.
#
out_grad /= 1.
elif
denom
.
owner
.
op
==
tensor
.
mul
:
# Try to find the AdvancedSubtensor node mentionned above,
# and the output gradient
for
i
,
input
in
enumerate
(
denom
.
owner
.
inputs
):
if
input
.
owner
and
isinstance
(
input
.
owner
.
op
,
subtensor
.
AdvancedSubtensor
):
other_inputs
=
[
in_
for
(
j
,
in_
)
in
enumerate
(
denom
.
owner
.
inputs
)
if
j
!=
i
]
other_inputs
=
[
in_
for
(
j
,
in_
)
in
enumerate
(
denom
.
owner
.
inputs
)
if
j
!=
i
]
if
len
(
other_inputs
)
==
1
:
rest
=
other_inputs
[
0
]
else
:
...
...
@@ -1831,8 +1835,8 @@ def local_useless_crossentropy_softmax_1hot_with_bias_dx_alloc(node):
# `CrossentropySoftmax1HotWithBiasDx`) we do not need to
# check it at runtime.
if
(
dz_broad
[
0
]
and
not
same_shape
(
sm
,
dy
,
dim_x
=
0
,
dim_y
=
0
)
and
shape_of
[
dy
][
0
]
!=
1
):
not
same_shape
(
sm
,
dy
,
dim_x
=
0
,
dim_y
=
0
)
and
shape_of
[
dy
][
0
]
!=
1
):
# If `dz` is broadcastable, we need to check whether the shapes
# of `dy` and `sm` are the same or whether the shape of `dy` is
# equal to 1.
...
...
@@ -1894,16 +1898,14 @@ def categorical_crossentropy(coding_dist, true_dist):
"""
if
true_dist
.
ndim
==
coding_dist
.
ndim
:
return
-
tensor
.
sum
(
true_dist
*
tensor
.
log
(
coding_dist
),
axis
=
coding_dist
.
ndim
-
1
)
return
-
tensor
.
sum
(
true_dist
*
tensor
.
log
(
coding_dist
),
axis
=
coding_dist
.
ndim
-
1
)
elif
true_dist
.
ndim
==
coding_dist
.
ndim
-
1
:
return
crossentropy_categorical_1hot
(
coding_dist
,
true_dist
)
else
:
raise
TypeError
(
'rank mismatch between coding and true distributions'
)
from
theano
import
scalar
class
Prepend_scalar_constant_to_each_row
(
gof
.
Op
):
__props__
=
()
...
...
@@ -2026,7 +2028,7 @@ local_log_softmax = gof.PatternSub(in_pattern=(tensor.log, (softmax_op, 'x')),
# don't do register_stabilize, this is to make local_log_softmax run
# only after another more specific optimization that stabilizes cross entropy
#opt.register_stabilize(local_log_softmax, name = 'local_log_softmax')
#
opt.register_stabilize(local_log_softmax, name = 'local_log_softmax')
opt
.
register_specialize
(
local_log_softmax
,
'fast_compile_gpu'
,
name
=
'local_log_softmax'
)
...
...
theano/tests/test_flake8.py
浏览文件 @
70b5f2c1
...
...
@@ -88,7 +88,6 @@ whitelist_flake8 = [
"tensor/signal/conv.py"
,
"tensor/signal/tests/test_conv.py"
,
"tensor/signal/tests/test_downsample.py"
,
"tensor/nnet/nnet.py"
,
"tensor/nnet/Conv3D.py"
,
"tensor/nnet/__init__.py"
,
"tensor/nnet/ConvTransp3D.py"
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论