Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
563bdb57
提交
563bdb57
authored
5月 04, 2010
作者:
fsavard
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Added ImagesFromNeighbourhoods and two basic tests... but the tests are…
Added ImagesFromNeighbourhoods and two basic tests... but the tests are commented out for the moment
上级
cf46082b
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
147 行增加
和
15 行删除
+147
-15
neighbourhoods.py
theano/sandbox/neighbourhoods.py
+94
-14
test_neighbourhoods.py
theano/sandbox/test_neighbourhoods.py
+53
-1
没有找到文件。
theano/sandbox/neighbourhoods.py
浏览文件 @
563bdb57
...
...
@@ -7,7 +7,8 @@ import numpy
import
__builtin__
class
NeighbourhoodsFromImages
(
Op
):
def
__init__
(
self
,
n_dims_before
,
dims_neighbourhoods
,
strides
=
None
,
ignore_border
=
False
):
def
__init__
(
self
,
n_dims_before
,
dims_neighbourhoods
,
strides
=
None
,
ignore_border
=
False
,
inverse
=
False
):
"""
This extracts neighbourhoods from "images", but in a
dimension-generic manner.
...
...
@@ -58,13 +59,18 @@ class NeighbourhoodsFromImages(Op):
If the dimensions of the neighbourhoods don't exactly divide the
dimensions of the "images", you can either fill the last
neighbourhood with zeros (False) or drop it entirely (True).
inverse : bool
You shouldn't have to use this. Only used by child class
ImagesFromNeighbourhoods which simply reverses the assignment.
"""
self
.
n_dims_before
=
n_dims_before
self
.
dims_neighbourhoods
=
dims_neighbourhoods
self
.
strides
=
strides
if
not
strides
is
None
else
dims_neighbourhoods
self
.
ignore_border
=
ignore_border
self
.
code
=
self
.
make_py_code
()
self
.
inverse
=
inverse
self
.
code_string
,
self
.
code
=
self
.
make_py_code
()
def
_compute_neigh_strides
(
self
):
neigh_strides
=
[
1
for
i
in
range
(
len
(
self
.
strides
))]
...
...
@@ -114,23 +120,78 @@ class NeighbourhoodsFromImages(Op):
return
dims
,
num_strides
# for inverse mode
# "output" here actually referes to the Op's input shape (but it's inverse mode)
def
in_shape
(
self
,
output_shape
):
out_dims
=
list
(
output_shape
[:
self
.
n_dims_before
])
num_strides
=
[]
# in the inverse case we don't worry about borders:
# they either have been filled with zeros, or have been cropped
for
i
,
ds
in
enumerate
(
self
.
dims_neighbourhoods
):
# the number of strides performed by NeighFromImg is
# directly given by this shape
num_strides
.
append
(
output_shape
[
self
.
n_dims_before
+
i
])
# our Op's output image must be at least this wide
at_least_width
=
num_strides
[
i
]
*
self
.
strides
[
i
]
# ... which gives us this number of neighbourhoods
num_neigh
=
at_least_width
//
ds
if
at_least_width
%
ds
!=
0
:
num_neigh
+=
1
# making the final Op's output dimension this wide
out_dims
.
append
(
num_neigh
*
ds
)
return
out_dims
,
num_strides
def
make_node
(
self
,
x
):
if
x
.
type
.
ndim
!=
(
self
.
n_dims_before
+
\
len
(
self
.
dims_neighbourhoods
)):
raise
TypeError
()
if
self
.
inverse
:
# +1 in the inverse case
if
x
.
type
.
ndim
!=
(
self
.
n_dims_before
+
\
len
(
self
.
dims_neighbourhoods
)
+
1
):
raise
TypeError
()
else
:
if
x
.
type
.
ndim
!=
(
self
.
n_dims_before
+
\
len
(
self
.
dims_neighbourhoods
)):
raise
TypeError
()
return
gof
.
Apply
(
self
,
[
x
],
[
x
.
type
()])
def
perform
(
self
,
node
,
(
x
,),
(
z
,)):
if
self
.
inverse
:
# +1 in the inverse case
if
len
(
x
.
shape
)
!=
(
self
.
n_dims_before
+
\
len
(
self
.
dims_neighbourhoods
)
+
1
):
raise
ValueError
(
"Images passed as input don't match the "
+
\
"dimensions passed when this (inversed) Apply node was created"
)
prod
=
1
for
dim
in
self
.
dims_neighbourhoods
:
prod
*=
dim
if
x
.
shape
[
-
1
]
!=
prod
:
raise
ValueError
((
"Last dimension of neighbourhoods (
%
s) is not "
+
\
"the product of the neighbourhoods dimensions (
%
s)"
)
%
\
(
str
(
x
.
shape
[
-
1
]),
str
(
prod
)))
else
:
if
len
(
x
.
shape
)
!=
(
self
.
n_dims_before
+
\
len
(
self
.
dims_neighbourhoods
)):
raise
ValueError
(
"Images passed as input don't match the "
+
\
"dimensions passed when this Apply node was created"
)
if
self
.
inverse
:
input_shape
,
num_strides
=
self
.
in_shape
(
x
.
shape
)
out_shape
,
dummy
=
self
.
out_shape
(
input_shape
)
else
:
input_shape
=
x
.
shape
out_shape
,
num_strides
=
self
.
out_shape
(
input_shape
)
if
len
(
x
.
shape
)
!=
(
self
.
n_dims_before
+
len
(
self
.
dims_neighbourhoods
)):
raise
ValueError
(
"Images passed as input don't match the dimensions passed when this Apply node was created"
)
out_shape
,
num_strides
=
self
.
out_shape
(
x
.
shape
)
neigh_strides
=
self
.
_compute_neigh_strides
()
input_shape
=
x
.
shape
if
z
[
0
]
is
None
:
z
[
0
]
=
numpy
.
zeros
(
out_shape
)
if
self
.
inverse
:
z
[
0
]
=
numpy
.
zeros
(
input_shape
)
else
:
z
[
0
]
=
numpy
.
zeros
(
out_shape
)
z
[
0
]
=
theano
.
_asarray
(
z
[
0
],
dtype
=
x
.
dtype
)
exec
(
self
.
code
)
...
...
@@ -140,7 +201,7 @@ class NeighbourhoodsFromImages(Op):
for
i
in
xrange
(
len
(
self
.
strides
)):
code
+=
self
.
_py_innerloop
(
i
)
code
+=
self
.
_py_assignment
()
return
__builtin__
.
compile
(
code
,
'<string>'
,
'exec'
)
return
code
,
__builtin__
.
compile
(
code
,
'<string>'
,
'exec'
)
def
_py_outerloops
(
self
):
code_before
=
""
...
...
@@ -185,8 +246,27 @@ class NeighbourhoodsFromImages(Op):
[
"stride_idx_
%
d,"
%
(
i
,)
for
i
in
\
range
(
len
(
self
.
strides
))])
out_idx
+=
self
.
_py_flattened_idx
()
return
'
\t
'
*
(
self
.
n_dims_before
+
len
(
self
.
strides
)
*
2
)
+
\
"z[0][
%
s] = x[
%
s]
\n
"
%
(
out_idx
,
input_idx
)
#return_val = '\t' * (self.n_dims_before + len(self.strides)*2)
#return_val += "print "+input_idx+"'\\n',"+out_idx+"\n"
return_val
=
'
\t
'
*
(
self
.
n_dims_before
+
len
(
self
.
strides
)
*
2
)
if
self
.
inverse
:
# remember z and x are inversed:
# z is the Op's output, but has input_shape
# x is the Op's input, but has out_shape
return_val
+=
"z[0][
%
s] = x[
%
s]
\n
"
%
(
input_idx
,
out_idx
)
else
:
return_val
+=
"z[0][
%
s] = x[
%
s]
\n
"
%
(
out_idx
,
input_idx
)
return
return_val
class
ImagesFromNeighbourhoods
(
NeighbourhoodsFromImages
):
def
__init__
(
self
,
n_dims_before
,
dims_neighbourhoods
,
strides
=
None
,
ignore_border
=
False
):
NeighbourhoodsFromImages
.
__init__
(
self
,
n_dims_before
,
dims_neighbourhoods
,
strides
=
strides
,
ignore_border
=
ignore_border
,
inverse
=
True
)
# and that's all there is to it
theano/sandbox/test_neighbourhoods.py
浏览文件 @
563bdb57
...
...
@@ -8,6 +8,57 @@ import theano.tensor as T
from
theano.sandbox.neighbourhoods
import
*
'''
def test_imgFromNeigh_noborder_1d():
x = T.dtensor3()
a = numpy.arange(2*2*6).reshape((2,2,6))
neighs = NeighbourhoodsFromImages(2, (3,))(x)
f = theano.function([x], neighs)
z = f(a)
cmp = numpy.asarray([[[[ 0., 1., 2.],
[ 3., 4., 5.]],
[[ 6., 7., 8.],
[ 9., 10., 11.]]],
[[[ 12., 13., 14.],
[ 15., 16., 17.]],
[[ 18., 19., 20.],
[ 21., 22., 23.]]]])
assert numpy.allclose(z, cmp)
x2 = T.dtensor4()
imgs = ImagesFromNeighbourhoods(2, (3,))(x2)
f2 = theano.function([x2], imgs)
z2 = f2(cmp)
assert numpy.allclose(z2, a)
def test_imgFromNeigh_1d_stridesmaller():
x = T.dtensor3()
a = numpy.arange(2*4).reshape((2,4))
#neighs = NeighbourhoodsFromImages(1, (3,), strides=(1,), ignore_border=False)(x)
cmp = numpy.asarray([[[0.,1.,2.],[1.,2.,3.],[2.,3.,0.],[3.,0.,0.]],
\
[[4.,5.,6.],[5.,6.,7.],[6.,7.,0.],[7.,0.,0.]]])
images = ImagesFromNeighbourhoods(1, (3,), strides=(1,), ignore_border=False)(x)
f = theano.function([x], images)
aprime = f(cmp)
should_be = [[0., 1., 2., 3., 0., 0.], [ 4., 5., 6., 7., 0., 0.]]
assert numpy.allclose(aprime, should_be)
def test_neighFromImg_1d():
x = T.dtensor3()
...
...
@@ -116,6 +167,7 @@ if __name__ == '__main__':
test_neighFromImg_1d_stridesmaller()
test_neighFromImg_1d_stridesbigger()
test_neighFromImg_2d()
test_imgFromNeigh_noborder_1d()
test_imgFromNeigh_1d_stridesmaller()
'''
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论