Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
85f08bfd
提交
85f08bfd
authored
7月 14, 2015
作者:
sebastien-j
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Split DownsampleFactorMaxGrad
上级
a1e290b7
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
246 行增加
和
76 行删除
+246
-76
dnn.py
theano/sandbox/cuda/dnn.py
+28
-3
opt.py
theano/sandbox/cuda/opt.py
+4
-3
test_dnn.py
theano/sandbox/cuda/tests/test_dnn.py
+7
-3
downsample.py
theano/tensor/signal/downsample.py
+200
-60
test_downsample.py
theano/tensor/signal/tests/test_downsample.py
+7
-7
没有找到文件。
theano/sandbox/cuda/dnn.py
浏览文件 @
85f08bfd
...
...
@@ -12,7 +12,7 @@ from theano.compile.ops import shape_i
from
theano.configparser
import
AddConfigVar
,
EnumStr
from
theano.tensor.nnet
import
SoftmaxGrad
from
theano.tensor.signal.downsample
import
(
DownsampleFactorMax
,
DownsampleFactorMax
Grad
)
DownsampleFactorMax
,
MaxPoolGrad
,
AveragePool
Grad
)
from
theano.sandbox.cuda
import
GpuOp
from
theano.sandbox.cuda.basic_ops
import
(
as_cuda_ndarray_variable
,
host_from_gpu
,
...
...
@@ -1672,11 +1672,11 @@ if True:
desc
)]
@register_opt
(
'cudnn'
)
@local_optimizer
([
DownsampleFactorMax
Grad
])
@local_optimizer
([
MaxPool
Grad
])
def
local_pool_dnn_grad_stride
(
node
):
if
not
dnn_available
():
return
if
isinstance
(
node
.
op
,
DownsampleFactorMax
Grad
):
if
isinstance
(
node
.
op
,
MaxPool
Grad
):
if
not
node
.
op
.
ignore_border
:
return
inp
,
out
,
inp_grad
=
node
.
inputs
...
...
@@ -1696,6 +1696,31 @@ if True:
desc
)
return
[
host_from_gpu
(
ret
)]
@register_opt
(
'cudnn'
)
@local_optimizer
([
AveragePoolGrad
])
def
local_avgpool_dnn_grad_stride
(
node
):
if
not
dnn_available
():
return
if
isinstance
(
node
.
op
,
AveragePoolGrad
):
if
not
node
.
op
.
ignore_border
:
return
inp
,
inp_grad
=
node
.
inputs
ds
=
node
.
op
.
ds
st
=
node
.
op
.
st
pad
=
node
.
op
.
padding
mode
=
node
.
op
.
mode
if
((
inp
.
owner
and
isinstance
(
inp
.
owner
.
op
,
HostFromGpu
))
or
(
inp_grad
.
owner
and
isinstance
(
inp_grad
.
owner
.
op
,
HostFromGpu
))):
desc
=
GpuDnnPoolDesc
(
ws
=
ds
,
stride
=
st
,
mode
=
mode
,
pad
=
pad
)()
ret
=
GpuDnnPoolGrad
()(
gpu_contiguous
(
inp
),
gpu_contiguous
(
numpy
.
empty
((
1
,
1
,
1
,
1
),
dtype
=
numpy
.
float32
)),
gpu_contiguous
(
inp_grad
),
desc
)
return
[
host_from_gpu
(
ret
)]
@register_opt
(
'cudnn'
)
@local_optimizer
([
GpuSoftmax
])
def
local_softmax_dnn
(
node
):
...
...
theano/sandbox/cuda/opt.py
浏览文件 @
85f08bfd
...
...
@@ -120,7 +120,8 @@ cpu_ops_moved_to_gpu = [
tensor
.
blas
.
Dot22
,
tensor
.
blas
.
Dot22Scalar
,
tensor
.
blas
.
Gemm
,
tensor
.
blas
.
Gemv
,
tensor
.
blas
.
Ger
,
tensor
.
nnet
.
conv
.
ConvOp
,
tensor
.
signal
.
downsample
.
DownsampleFactorMax
,
tensor
.
signal
.
downsample
.
DownsampleFactorMaxGrad
,
tensor
.
signal
.
downsample
.
MaxPoolGrad
,
tensor
.
signal
.
downsample
.
AveragePoolGrad
,
theano
.
tensor
.
nnet
.
neighbours
.
Images2Neibs
,
tensor
.
nnet
.
CrossentropySoftmaxArgmax1HotWithBias
,
tensor
.
nnet
.
CrossentropySoftmax1HotWithBiasDx
,
...
...
@@ -1764,9 +1765,9 @@ def local_gpu_downsample_factor_max(node):
@register_opt
()
@local_optimizer
([
downsample
.
DownsampleFactorMax
Grad
])
@local_optimizer
([
downsample
.
MaxPool
Grad
])
def
local_gpu_downsample_factor_max_grad
(
node
):
if
(
isinstance
(
node
.
op
,
downsample
.
DownsampleFactorMax
Grad
)
and
if
(
isinstance
(
node
.
op
,
downsample
.
MaxPool
Grad
)
and
node
.
op
.
ds
==
node
.
op
.
st
):
assert
node
.
op
.
__props__
==
(
'ds'
,
'ignore_border'
,
'st'
,
'padding'
,
'mode'
)
...
...
theano/sandbox/cuda/tests/test_dnn.py
浏览文件 @
85f08bfd
...
...
@@ -10,7 +10,7 @@ import theano.tensor as T
import
theano.tests.unittest_tools
as
utt
from
theano.sandbox.neighbours
import
images2neibs
from
theano.tensor.signal.downsample
import
max_pool_2d
from
theano.tensor.signal.downsample
import
DownsampleFactorMax
Grad
from
theano.tensor.signal.downsample
import
MaxPoolGrad
,
AveragePool
Grad
import
theano.sandbox.cuda.dnn
as
dnn
from
theano.sandbox.cuda.basic_ops
import
GpuAllocEmpty
,
gpu_alloc_empty
...
...
@@ -278,8 +278,12 @@ def test_pooling():
ignore_border
=
True
,
mode
=
mode
)
fc
=
theano
.
function
([
x
],
theano
.
grad
(
out
.
sum
(),
x
),
mode
=
mode_without_gpu
)
assert
any
([
isinstance
(
node
.
op
,
DownsampleFactorMaxGrad
)
for
node
in
fc
.
maker
.
fgraph
.
toposort
()])
if
mode
==
'max'
:
assert
any
([
isinstance
(
node
.
op
,
MaxPoolGrad
)
for
node
in
fc
.
maker
.
fgraph
.
toposort
()])
else
:
assert
any
([
isinstance
(
node
.
op
,
AveragePoolGrad
)
for
node
in
fc
.
maker
.
fgraph
.
toposort
()])
c_out
=
fc
(
data
)
assert
numpy
.
allclose
(
c_out
,
g_out
)
...
...
theano/tensor/signal/downsample.py
浏览文件 @
85f08bfd
...
...
@@ -36,7 +36,7 @@ def max_pool_2d_same_size(input, patch_size):
(2,2) will retain only one non-zero value per patch of 4 values.
"""
output
=
DownsampleFactorMax
(
patch_size
,
True
)(
input
)
outs
=
DownsampleFactorMax
Grad
(
patch_size
,
True
)(
input
,
output
,
output
)
outs
=
MaxPool
Grad
(
patch_size
,
True
)(
input
,
output
,
output
)
return
outs
...
...
@@ -309,13 +309,19 @@ class DownsampleFactorMax(Op):
def
grad
(
self
,
inp
,
grads
):
x
,
=
inp
gz
,
=
grads
maxout
=
self
(
x
)
return
[
DownsampleFactorMaxGrad
(
self
.
ds
,
ignore_border
=
self
.
ignore_border
,
st
=
self
.
st
,
padding
=
self
.
padding
,
mode
=
self
.
mode
)(
x
,
maxout
,
gz
)]
if
self
.
mode
==
'max'
:
maxout
=
self
(
x
)
return
[
MaxPoolGrad
(
self
.
ds
,
ignore_border
=
self
.
ignore_border
,
st
=
self
.
st
,
padding
=
self
.
padding
,
mode
=
self
.
mode
)(
x
,
maxout
,
gz
)]
else
:
return
[
AveragePoolGrad
(
self
.
ds
,
ignore_border
=
self
.
ignore_border
,
st
=
self
.
st
,
padding
=
self
.
padding
,
mode
=
self
.
mode
)(
x
,
gz
)]
def
c_headers
(
self
):
return
[
'<algorithm>'
]
...
...
@@ -502,9 +508,86 @@ class DownsampleFactorMax(Op):
def
c_code_cache_version
(
self
):
return
(
0
,
6
,
8
,
3
)
class
DownsampleFactorMax
Grad
(
Op
):
class
Pool
Grad
(
Op
):
__props__
=
(
'ds'
,
'ignore_border'
,
'st'
,
'padding'
,
'mode'
)
@staticmethod
def
out_shape
(
imgshape
,
ds
,
ignore_border
=
False
,
st
=
None
,
padding
=
(
0
,
0
)):
"""Return the shape of the output from this op, for input of given
shape and flags.
:param imgshape: the shape of a tensor of images. The last two elements
are interpreted as the number of rows, and the number of cols.
:type imgshape: tuple, list, or similar of integer or
scalar Theano variable.
:param ds: downsample factor over rows and columns
this parameter indicates the size of the pooling region
:type ds: list or tuple of two ints
:param st: the stride size. This is the distance between the pooling
regions. If it's set to None, in which case it equlas ds.
:type st: list or tuple of two ints
:param ignore_border: if ds doesn't divide imgshape, do we include an
extra row/col of partial downsampling (False) or ignore it (True).
:type ignore_border: bool
:param padding: (pad_h, pad_w), pad zeros to extend beyond four borders
of the images, pad_h is the size of the top and bottom margins,
and pad_w is the size of the left and right margins.
:type padding: tuple of two ints
:rtype: list
:returns: the shape of the output from this op, for input of given
shape. This will have the same length as imgshape, but with last
two elements reduced as per the downsampling & ignore_border flags.
"""
if
len
(
imgshape
)
<
2
:
raise
TypeError
(
'imgshape must have at least two elements '
'(rows, cols)'
)
if
st
is
None
:
st
=
ds
r
,
c
=
imgshape
[
-
2
:]
r
+=
padding
[
0
]
*
2
c
+=
padding
[
1
]
*
2
if
ignore_border
:
out_r
=
(
r
-
ds
[
0
])
//
st
[
0
]
+
1
out_c
=
(
c
-
ds
[
1
])
//
st
[
1
]
+
1
if
isinstance
(
r
,
theano
.
Variable
):
nr
=
tensor
.
maximum
(
out_r
,
0
)
else
:
nr
=
numpy
.
maximum
(
out_r
,
0
)
if
isinstance
(
c
,
theano
.
Variable
):
nc
=
tensor
.
maximum
(
out_c
,
0
)
else
:
nc
=
numpy
.
maximum
(
out_c
,
0
)
else
:
if
isinstance
(
r
,
theano
.
Variable
):
nr
=
tensor
.
switch
(
tensor
.
ge
(
st
[
0
],
ds
[
0
]),
(
r
-
1
)
//
st
[
0
]
+
1
,
tensor
.
maximum
(
0
,
(
r
-
1
-
ds
[
0
])
//
st
[
0
]
+
1
)
+
1
)
elif
st
[
0
]
>=
ds
[
0
]:
nr
=
(
r
-
1
)
//
st
[
0
]
+
1
else
:
nr
=
max
(
0
,
(
r
-
1
-
ds
[
0
])
//
st
[
0
]
+
1
)
+
1
if
isinstance
(
c
,
theano
.
Variable
):
nc
=
tensor
.
switch
(
tensor
.
ge
(
st
[
1
],
ds
[
1
]),
(
c
-
1
)
//
st
[
1
]
+
1
,
tensor
.
maximum
(
0
,
(
c
-
1
-
ds
[
1
])
//
st
[
1
]
+
1
)
+
1
)
elif
st
[
1
]
>=
ds
[
1
]:
nc
=
(
c
-
1
)
//
st
[
1
]
+
1
else
:
nc
=
max
(
0
,
(
c
-
1
-
ds
[
1
])
//
st
[
1
]
+
1
)
+
1
rval
=
list
(
imgshape
[:
-
2
])
+
[
nr
,
nc
]
return
rval
def
__init__
(
self
,
ds
,
ignore_border
,
st
=
None
,
padding
=
(
0
,
0
),
mode
=
'max'
):
self
.
ds
=
tuple
(
ds
)
self
.
ignore_border
=
ignore_border
...
...
@@ -518,6 +601,16 @@ class DownsampleFactorMaxGrad(Op):
" 'average_inc_pad' and 'average_exc_pad'. Got
%
s"
%
mode
)
self
.
mode
=
mode
def
infer_shape
(
self
,
node
,
in_shapes
):
return
[
in_shapes
[
0
]]
class
MaxPoolGrad
(
PoolGrad
):
def
__init__
(
self
,
ds
,
ignore_border
,
st
=
None
,
padding
=
(
0
,
0
),
mode
=
'max'
):
PoolGrad
.
__init__
(
self
,
ds
,
ignore_border
,
st
,
padding
,
mode
)
self
.
mode
=
'max'
def
make_node
(
self
,
x
,
maxout
,
gz
):
# make_node should only be called by the grad function of
# DownsampleFactorMax, so these asserts should not fail.
...
...
@@ -557,62 +650,30 @@ class DownsampleFactorMaxGrad(Op):
else
:
y
=
x
gx
=
numpy
.
zeros_like
(
y
)
if
self
.
mode
==
'max'
:
for
n
in
xrange
(
x
.
shape
[
0
]):
for
k
in
xrange
(
x
.
shape
[
1
]):
for
r
in
xrange
(
pr
):
row_st
=
builtins
.
max
(
r
*
st0
,
self
.
padding
[
0
])
row_end
=
builtins
.
min
(
row_st
+
ds0
,
img_rows
)
for
c
in
xrange
(
pc
):
col_st
=
builtins
.
max
(
c
*
st1
,
self
.
padding
[
1
])
col_end
=
builtins
.
min
(
col_st
+
ds1
,
img_cols
)
for
row_ind
in
xrange
(
row_st
,
row_end
):
for
col_ind
in
xrange
(
col_st
,
col_end
):
if
(
maxout
[
n
,
k
,
r
,
c
]
==
y
[
n
,
k
,
row_ind
,
col_ind
]):
gx
[
n
,
k
,
row_ind
,
col_ind
]
+=
gz
[
n
,
k
,
r
,
c
]
else
:
for
n
in
xrange
(
x
.
shape
[
0
]):
for
k
in
xrange
(
x
.
shape
[
1
]):
for
r
in
xrange
(
pr
):
if
sum_mode
or
inc_pad
:
row_st
=
r
*
st0
else
:
row_st
=
builtins
.
max
(
r
*
st0
,
self
.
padding
[
0
])
row_end
=
builtins
.
min
(
row_st
+
ds0
,
img_rows
)
for
c
in
xrange
(
pc
):
if
sum_mode
or
inc_pad
:
col_st
=
c
*
st1
else
:
col_st
=
builtins
.
max
(
c
*
st1
,
self
.
padding
[
1
])
col_end
=
builtins
.
min
(
col_st
+
ds1
,
img_cols
)
if
sum_mode
:
val
=
gz
[
n
,
k
,
r
,
c
]
else
:
val
=
gz
[
n
,
k
,
r
,
c
]
/
((
row_end
-
row_st
)
*
(
col_end
-
col_st
))
gx
[
n
,
k
,
row_st
:
row_end
,
col_st
:
col_end
]
+=
val
for
n
in
xrange
(
x
.
shape
[
0
]):
for
k
in
xrange
(
x
.
shape
[
1
]):
for
r
in
xrange
(
pr
):
row_st
=
builtins
.
max
(
r
*
st0
,
self
.
padding
[
0
])
row_end
=
builtins
.
min
(
row_st
+
ds0
,
img_rows
)
for
c
in
xrange
(
pc
):
col_st
=
builtins
.
max
(
c
*
st1
,
self
.
padding
[
1
])
col_end
=
builtins
.
min
(
col_st
+
ds1
,
img_cols
)
for
row_ind
in
xrange
(
row_st
,
row_end
):
for
col_ind
in
xrange
(
col_st
,
col_end
):
if
(
maxout
[
n
,
k
,
r
,
c
]
==
y
[
n
,
k
,
row_ind
,
col_ind
]):
gx
[
n
,
k
,
row_ind
,
col_ind
]
+=
gz
[
n
,
k
,
r
,
c
]
# unpad the image
gx
=
gx
[:,
:,
pad_h
:(
img_rows
-
pad_h
),
pad_w
:(
img_cols
-
pad_w
)]
gx_stg
[
0
]
=
gx
def
infer_shape
(
self
,
node
,
in_shapes
):
return
[
in_shapes
[
0
]]
def
grad
(
self
,
inp
,
grads
):
x
,
maxout
,
gz
=
inp
ggx
,
=
grads
if
self
.
mode
==
'max'
:
return
[
theano
.
tensor
.
zeros_like
(
x
),
theano
.
tensor
.
zeros_like
(
maxout
),
DownsampleFactorMaxGradGrad
(
self
.
ds
,
ignore_border
=
self
.
ignore_border
,
st
=
self
.
st
,
padding
=
self
.
padding
)(
x
,
maxout
,
ggx
)]
else
:
return
[
theano
.
tensor
.
zeros_like
(
x
),
theano
.
tensor
.
zeros_like
(
maxout
),
theano
.
gradient
.
grad_not_implemented
(
self
,
2
,
gz
,
'Hessian not implemented with padding'
)]
return
[
theano
.
tensor
.
zeros_like
(
x
),
theano
.
tensor
.
zeros_like
(
maxout
),
DownsampleFactorMaxGradGrad
(
self
.
ds
,
ignore_border
=
self
.
ignore_border
,
st
=
self
.
st
,
padding
=
self
.
padding
)(
x
,
maxout
,
ggx
)]
def
c_code
(
self
,
node
,
name
,
inp
,
out
,
sub
):
if
self
.
mode
!=
'max'
:
...
...
@@ -729,8 +790,87 @@ class DownsampleFactorMaxGrad(Op):
}
"""
%
locals
()
def
c_code_cache_version
(
self
):
return
(
0
,
7
)
#def c_code_cache_version(self):
# return (0, 7)
class
AveragePoolGrad
(
PoolGrad
):
def
__init__
(
self
,
ds
,
ignore_border
,
st
=
None
,
padding
=
(
0
,
0
),
mode
=
'avg_exc_pad'
):
PoolGrad
.
__init__
(
self
,
ds
,
ignore_border
,
st
,
padding
,
mode
)
def
make_node
(
self
,
x
,
gz
):
# make_node should only be called by the grad function of
# DownsampleFactorMax, so these asserts should not fail.
assert
isinstance
(
x
,
Variable
)
and
x
.
ndim
==
4
assert
isinstance
(
gz
,
Variable
)
and
gz
.
ndim
==
4
x
=
tensor
.
as_tensor_variable
(
x
)
gz
=
tensor
.
as_tensor_variable
(
gz
)
return
Apply
(
self
,
[
x
,
gz
],
[
x
.
type
()])
def
perform
(
self
,
node
,
inp
,
out
):
if
self
.
mode
not
in
(
'max'
,
'sum'
)
and
self
.
padding
!=
(
0
,
0
):
raise
NotImplementedError
()
x
,
gz
=
inp
gx_stg
,
=
out
z_shape
=
self
.
out_shape
(
x
.
shape
,
self
.
ds
,
self
.
ignore_border
,
self
.
st
,
self
.
padding
)
if
(
gx_stg
[
0
]
is
None
)
or
(
gx_stg
[
0
]
.
shape
!=
z_shape
):
gx_stg
[
0
]
=
numpy
.
empty
(
z_shape
,
dtype
=
x
.
dtype
)
zz
=
gx_stg
[
0
]
# number of pooling output rows
pr
=
zz
.
shape
[
-
2
]
# number of pooling output cols
pc
=
zz
.
shape
[
-
1
]
ds0
,
ds1
=
self
.
ds
st0
,
st1
=
self
.
st
pad_h
=
self
.
padding
[
0
]
pad_w
=
self
.
padding
[
1
]
img_rows
=
x
.
shape
[
-
2
]
+
2
*
pad_h
img_cols
=
x
.
shape
[
-
1
]
+
2
*
pad_w
inc_pad
=
self
.
mode
==
'average_inc_pad'
sum_mode
=
self
.
mode
==
'sum'
# pad the image
if
self
.
padding
!=
(
0
,
0
):
y
=
numpy
.
zeros
(
(
x
.
shape
[
0
],
x
.
shape
[
1
],
img_rows
,
img_cols
),
dtype
=
x
.
dtype
)
y
[:,
:,
pad_h
:(
img_rows
-
pad_h
),
pad_w
:(
img_cols
-
pad_w
)]
=
x
else
:
y
=
x
gx
=
numpy
.
zeros_like
(
y
)
for
n
in
xrange
(
x
.
shape
[
0
]):
for
k
in
xrange
(
x
.
shape
[
1
]):
for
r
in
xrange
(
pr
):
if
sum_mode
or
inc_pad
:
row_st
=
r
*
st0
else
:
row_st
=
builtins
.
max
(
r
*
st0
,
self
.
padding
[
0
])
row_end
=
builtins
.
min
(
row_st
+
ds0
,
img_rows
)
for
c
in
xrange
(
pc
):
if
sum_mode
or
inc_pad
:
col_st
=
c
*
st1
else
:
col_st
=
builtins
.
max
(
c
*
st1
,
self
.
padding
[
1
])
col_end
=
builtins
.
min
(
col_st
+
ds1
,
img_cols
)
if
sum_mode
:
val
=
gz
[
n
,
k
,
r
,
c
]
else
:
val
=
gz
[
n
,
k
,
r
,
c
]
/
((
row_end
-
row_st
)
*
(
col_end
-
col_st
))
gx
[
n
,
k
,
row_st
:
row_end
,
col_st
:
col_end
]
+=
val
# unpad the image
gx
=
gx
[:,
:,
pad_h
:(
img_rows
-
pad_h
),
pad_w
:(
img_cols
-
pad_w
)]
gx_stg
[
0
]
=
gx
def
grad
(
self
,
inp
,
grads
):
x
,
gz
=
inp
ggx
,
=
grads
return
[
theano
.
tensor
.
zeros_like
(
x
),
theano
.
gradient
.
grad_not_implemented
(
self
,
2
,
gz
,
'Hessian not implemented with padding'
)]
class
DownsampleFactorMaxGradGrad
(
Op
):
__props__
=
(
'ds'
,
'ignore_border'
,
'st'
,
'padding'
,
'mode'
)
...
...
theano/tensor/signal/tests/test_downsample.py
浏览文件 @
85f08bfd
...
...
@@ -8,7 +8,7 @@ import theano
import
theano.tensor
as
tensor
from
theano.tests
import
unittest_tools
as
utt
from
theano.tensor.signal.downsample
import
(
DownsampleFactorMax
,
max_pool_2d
,
DownsampleFactorMax
Grad
,
MaxPoolGrad
,
AveragePool
Grad
,
DownsampleFactorMaxGradGrad
,
max_pool_2d_same_size
)
from
theano
import
function
...
...
@@ -417,7 +417,7 @@ class TestDownsampleFactorMax(utt.InferShapeTester):
def
mp
(
input
,
grad
):
out
=
DownsampleFactorMax
(
maxpoolshp
,
ignore_border
=
ignore_border
)(
input
)
grad_op
=
DownsampleFactorMax
Grad
(
grad_op
=
MaxPool
Grad
(
maxpoolshp
,
ignore_border
=
ignore_border
)
return
grad_op
(
input
,
out
,
grad
)
...
...
@@ -443,7 +443,7 @@ class TestDownsampleFactorMax(utt.InferShapeTester):
out
=
DownsampleFactorMax
(
maxpoolshp
,
ignore_border
=
ignore_border
,
st
=
stride
)(
input
)
grad_op
=
DownsampleFactorMax
Grad
(
grad_op
=
MaxPool
Grad
(
maxpoolshp
,
ignore_border
=
ignore_border
,
st
=
stride
)
return
grad_op
(
input
,
out
,
grad
)
...
...
@@ -475,7 +475,7 @@ class TestDownsampleFactorMax(utt.InferShapeTester):
out
=
DownsampleFactorMax
(
maxpoolshp
,
ignore_border
=
ignore_border
,
st
=
stride
)(
input
)
grad_op
=
DownsampleFactorMax
Grad
(
grad_op
=
MaxPool
Grad
(
maxpoolshp
,
ignore_border
=
ignore_border
,
st
=
stride
)
return
grad_op
(
input
,
out
,
grad
)
...
...
@@ -509,7 +509,7 @@ class TestDownsampleFactorMax(utt.InferShapeTester):
st
=
stridesize
,
padding
=
paddingsize
,
)(
input
)
grad_op
=
DownsampleFactorMax
Grad
(
maxpoolsize
,
ignore_border
=
True
,
grad_op
=
MaxPool
Grad
(
maxpoolsize
,
ignore_border
=
True
,
st
=
stridesize
,
padding
=
paddingsize
)
return
grad_op
(
input
,
out
,
grad
)
utt
.
verify_grad
(
mp
,
[
imval
,
grad_val
],
rng
=
rng
)
...
...
@@ -685,12 +685,12 @@ class TestDownsampleFactorMax(utt.InferShapeTester):
maxout_val
=
rng
.
rand
(
*
out_shapes
[
k
][
i
][
j
])
gz_val
=
rng
.
rand
(
*
out_shapes
[
k
][
i
][
j
])
self
.
_compile_and_check
([
image
,
maxout
,
gz
],
[
DownsampleFactorMax
Grad
(
maxpoolshp
,
[
MaxPool
Grad
(
maxpoolshp
,
ignore_border
=
ignore_border
,
padding
=
padding
)
(
image
,
maxout
,
gz
)],
[
image_val
,
maxout_val
,
gz_val
],
DownsampleFactorMax
Grad
,
MaxPool
Grad
,
warn
=
False
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论