Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
692f9012
提交
692f9012
authored
7月 02, 2015
作者:
Iban Harlouchet
提交者:
Frederic
7月 23, 2015
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
flake8 for theano/tensor/nnet/Conv3D.py
上级
70b5f2c1
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
32 行增加
和
29 行删除
+32
-29
Conv3D.py
theano/tensor/nnet/Conv3D.py
+32
-28
test_flake8.py
theano/tests/test_flake8.py
+0
-1
没有找到文件。
theano/tensor/nnet/Conv3D.py
浏览文件 @
692f9012
from
__future__
import
print_function
from
__future__
import
print_function
import
numpy
as
N
from
six.moves
import
xrange
from
six.moves
import
xrange
from
.
import
ConvGrad3D
from
.
import
ConvTransp3D
import
theano
import
theano
from
theano.tensor
import
basic
as
T
from
theano.tensor
import
basic
as
T
import
numpy
as
N
# from util import strutil
#from util import strutil
from
theano.tensor.blas_headers
import
blas_header_text
,
blas_header_version
from
theano.tensor.blas_headers
import
blas_header_text
,
blas_header_version
from
theano.tensor.blas
import
ldflags
from
theano.tensor.blas
import
ldflags
from
theano.misc
import
strutil
from
theano.misc
import
strutil
...
@@ -72,12 +77,12 @@ class Conv3D(theano.Op):
...
@@ -72,12 +77,12 @@ class Conv3D(theano.Op):
def
grad
(
self
,
inputs
,
output_gradients
):
def
grad
(
self
,
inputs
,
output_gradients
):
V
,
W
,
b
,
d
=
inputs
V
,
W
,
b
,
d
=
inputs
dCdH
,
=
output_gradients
dCdH
,
=
output_gradients
# make all of these ops support broadcasting of scalar b to vector b and eplace the zeros_like in all their grads
# make all of these ops support broadcasting of scalar b to vector b and eplace the zeros_like in all their grads
# print dCdH.broadcastable
# print dCdH.broadcastable
# print "dCdH.broadcastable"
# print "dCdH.broadcastable"
# quit(-1)
# quit(-1)
#dCdH = printing.Print("dCdH = ",["shape"])
#
dCdH = printing.Print("dCdH = ",["shape"])
# Make sure the broadcasting pattern of the gradient is the the same
# Make sure the broadcasting pattern of the gradient is the the same
# as the initial variable
# as the initial variable
...
@@ -88,10 +93,11 @@ class Conv3D(theano.Op):
...
@@ -88,10 +93,11 @@ class Conv3D(theano.Op):
dCdW
=
T
.
patternbroadcast
(
dCdW
,
W
.
broadcastable
)
dCdW
=
T
.
patternbroadcast
(
dCdW
,
W
.
broadcastable
)
dCdb
=
T
.
sum
(
dCdH
,
axis
=
(
0
,
1
,
2
,
3
))
dCdb
=
T
.
sum
(
dCdH
,
axis
=
(
0
,
1
,
2
,
3
))
dCdb
=
T
.
patternbroadcast
(
dCdb
,
b
.
broadcastable
)
dCdb
=
T
.
patternbroadcast
(
dCdb
,
b
.
broadcastable
)
dCdd
=
grad_undefined
(
self
,
3
,
inputs
[
3
],
dCdd
=
grad_undefined
(
"The gradient of Conv3D with respect to the convolution"
+
\
self
,
3
,
inputs
[
3
],
" stride is undefined because Conv3D is only defined for"
+
\
"The gradient of Conv3D with respect to the convolution"
" integer strides."
)
" stride is undefined because Conv3D is only defined for"
" integer strides."
)
if
'name'
in
dir
(
dCdH
)
and
dCdH
.
name
is
not
None
:
if
'name'
in
dir
(
dCdH
)
and
dCdH
.
name
is
not
None
:
dCdH_name
=
dCdH
.
name
dCdH_name
=
dCdH
.
name
...
@@ -113,11 +119,13 @@ class Conv3D(theano.Op):
...
@@ -113,11 +119,13 @@ class Conv3D(theano.Op):
else
:
else
:
b_name
=
'anon_b'
b_name
=
'anon_b'
dCdV
.
name
=
'Conv3D_dCdV(dCdH='
+
dCdH_name
+
',V='
+
V_name
+
')'
dCdV
.
name
=
'Conv3D_dCdV(dCdH='
+
dCdH_name
+
',V='
+
V_name
+
')'
dCdW
.
name
=
'Conv3D_dCdW(dCdH='
+
dCdH_name
+
',V='
+
V_name
+
',W='
+
W_name
+
')'
dCdW
.
name
=
(
'Conv3D_dCdW(dCdH='
+
dCdH_name
+
',V='
+
V_name
+
dCdb
.
name
=
'Conv3D_dCdb(dCdH='
+
dCdH_name
+
',V='
+
V_name
+
',W='
+
W_name
+
',b='
+
b_name
+
')'
',W='
+
W_name
+
')'
)
dCdb
.
name
=
(
'Conv3D_dCdb(dCdH='
+
dCdH_name
+
',V='
+
V_name
+
',W='
+
W_name
+
',b='
+
b_name
+
')'
)
return
[
dCdV
,
dCdW
,
dCdb
,
dCdd
]
return
[
dCdV
,
dCdW
,
dCdb
,
dCdd
]
def
perform
(
self
,
node
,
inputs
,
output_storage
):
def
perform
(
self
,
node
,
inputs
,
output_storage
):
V
,
W
,
b
,
d
=
inputs
V
,
W
,
b
,
d
=
inputs
...
@@ -144,7 +152,7 @@ class Conv3D(theano.Op):
...
@@ -144,7 +152,7 @@ class Conv3D(theano.Op):
output_width
=
T
.
floor
((
vidWidth
-
filterWidth
)
//
dc
)
+
1
output_width
=
T
.
floor
((
vidWidth
-
filterWidth
)
//
dc
)
+
1
output_dur
=
T
.
floor
((
vidDur
-
filterDur
)
//
dt
)
+
1
output_dur
=
T
.
floor
((
vidDur
-
filterDur
)
//
dt
)
+
1
rval
=
(
batch_size
,
output_height
,
output_width
,
output_dur
,
output_channels
)
rval
=
(
batch_size
,
output_height
,
output_width
,
output_dur
,
output_channels
)
return
[
rval
]
return
[
rval
]
...
@@ -155,7 +163,7 @@ class Conv3D(theano.Op):
...
@@ -155,7 +163,7 @@ class Conv3D(theano.Op):
return
ldflags
()
return
ldflags
()
def
c_compile_args
(
self
):
def
c_compile_args
(
self
):
flags
=
ldflags
(
libs
=
False
,
flags
=
True
)
flags
=
ldflags
(
libs
=
False
,
flags
=
True
)
return
flags
return
flags
def
c_lib_dirs
(
self
):
def
c_lib_dirs
(
self
):
...
@@ -170,7 +178,7 @@ class Conv3D(theano.Op):
...
@@ -170,7 +178,7 @@ class Conv3D(theano.Op):
H
=
outputs
[
0
]
H
=
outputs
[
0
]
codeSource
=
"""
codeSource
=
"""
///////////// < code generated by Conv3D >
///////////// < code generated by Conv3D >
//printf("
\t\t\t\t
Conv3D c code
\\
n");
//printf("
\t\t\t\t
Conv3D c code
\\
n");
...
@@ -320,13 +328,13 @@ class Conv3D(theano.Op):
...
@@ -320,13 +328,13 @@ class Conv3D(theano.Op):
VV
,
WV
,
bv
,
dv
=
node
.
inputs
VV
,
WV
,
bv
,
dv
=
node
.
inputs
HV
=
node
.
outputs
[
0
]
HV
=
node
.
outputs
[
0
]
if
(
theano
.
config
.
blas
.
ldflags
and
if
(
theano
.
config
.
blas
.
ldflags
and
VV
.
dtype
==
WV
.
dtype
and
HV
.
dtype
==
VV
.
dtype
):
VV
.
dtype
==
WV
.
dtype
and
HV
.
dtype
==
VV
.
dtype
):
if
VV
.
dtype
==
'float64'
:
if
VV
.
dtype
==
'float64'
:
gemv
=
'dgemv_'
gemv
=
'dgemv_'
elif
VV
.
dtype
==
'float32'
:
elif
VV
.
dtype
==
'float32'
:
gemv
=
'sgemv_'
gemv
=
'sgemv_'
else
:
else
:
raise
Exception
(
'Unrecognized dtype for convolution '
+
V
.
value
.
dtype
)
raise
Exception
(
'Unrecognized dtype for convolution '
+
V
.
value
.
dtype
)
codeSource
+=
"""
codeSource
+=
"""
if (inputChannels > 20 && outputChannels > 20 && ws4 == sizeof(ELEM_AT(
%(W)
s,0)))
if (inputChannels > 20 && outputChannels > 20 && ws4 == sizeof(ELEM_AT(
%(W)
s,0)))
...
@@ -571,7 +579,7 @@ def computeH(V, W, b, d):
...
@@ -571,7 +579,7 @@ def computeH(V, W, b, d):
outputChannels
=
W
.
shape
[
0
]
outputChannels
=
W
.
shape
[
0
]
inputChannels
=
V
.
shape
[
4
]
inputChannels
=
V
.
shape
[
4
]
if
W
.
shape
[
4
]
!=
inputChannels
:
if
W
.
shape
[
4
]
!=
inputChannels
:
raise
Exception
(
"W.shape[4] = "
+
str
(
W
.
shape
[
4
])
+
" but inputChannels = "
+
str
(
inputChannels
))
raise
Exception
(
"W.shape[4] = "
+
str
(
W
.
shape
[
4
])
+
" but inputChannels = "
+
str
(
inputChannels
))
filterHeight
=
W
.
shape
[
1
]
filterHeight
=
W
.
shape
[
1
]
filterWidth
=
W
.
shape
[
2
]
filterWidth
=
W
.
shape
[
2
]
filterDur
=
W
.
shape
[
3
]
filterDur
=
W
.
shape
[
3
]
...
@@ -586,12 +594,12 @@ def computeH(V, W, b, d):
...
@@ -586,12 +594,12 @@ def computeH(V, W, b, d):
assert
dy
>
0
assert
dy
>
0
assert
dt
>
0
assert
dt
>
0
outputHeight
=
int
(
(
vidHeight
-
filterHeight
)
/
dx
)
+
1
outputHeight
=
int
(
(
vidHeight
-
filterHeight
)
/
dx
)
+
1
outputWidth
=
int
(
(
vidWidth
-
filterWidth
)
/
dy
)
+
1
outputWidth
=
int
(
(
vidWidth
-
filterWidth
)
/
dy
)
+
1
outputDur
=
int
(
(
vidDur
-
filterDur
)
/
dt
)
+
1
outputDur
=
int
(
(
vidDur
-
filterDur
)
/
dt
)
+
1
H
=
N
.
zeros
(
(
batchSize
,
outputHeight
,
H
=
N
.
zeros
((
batchSize
,
outputHeight
,
outputWidth
,
outputDur
,
outputChannels
),
dtype
=
V
.
dtype
)
outputWidth
,
outputDur
,
outputChannels
),
dtype
=
V
.
dtype
)
# H[i,j,x,y,t] = b_j + sum_k sum_l sum_m sum_z W[j,z,k,l,m] V[i,z, dx*x+k,dy*y+l,dt*t+m]
# H[i,j,x,y,t] = b_j + sum_k sum_l sum_m sum_z W[j,z,k,l,m] V[i,z, dx*x+k,dy*y+l,dt*t+m]
for
i
in
xrange
(
0
,
H
.
shape
[
0
]):
for
i
in
xrange
(
0
,
H
.
shape
[
0
]):
...
@@ -610,12 +618,8 @@ def computeH(V, W, b, d):
...
@@ -610,12 +618,8 @@ def computeH(V, W, b, d):
# if (i,j,x,y,t) == (0,0,0,0,0):
# if (i,j,x,y,t) == (0,0,0,0,0):
# print (( W[j,z,k,l,m] , V[i,z,d[0]*x+k,d[1]*y+l,d[2]*t+m] ), (k,l,m) )
# print (( W[j,z,k,l,m] , V[i,z,d[0]*x+k,d[1]*y+l,d[2]*t+m] ), (k,l,m) )
w
=
W
[
j
,
k
,
l
,
m
,
z
]
w
=
W
[
j
,
k
,
l
,
m
,
z
]
v
=
V
[
i
,
d
[
0
]
*
x
+
k
,
d
[
1
]
*
y
+
l
,
d
[
2
]
*
t
+
m
,
z
]
v
=
V
[
i
,
d
[
0
]
*
x
+
k
,
d
[
1
]
*
y
+
l
,
d
[
2
]
*
t
+
m
,
z
]
# if i == 0 and x == 0 and y == 0 and t == 0 and j == 0:
# if i == 0 and x == 0 and y == 0 and t == 0 and j == 0:
# print 'setting H[0] += '+str(w*v)+' W['+str((j,z,k,l,m))+']='+str(w)+' V['+str((i,d[0]*x+k,d[1]*y+l,d[2]*t+m,z))+']='+str(v)
# print 'setting H[0] += '+str(w*v)+' W['+str((j,z,k,l,m))+']='+str(w)+' V['+str((i,d[0]*x+k,d[1]*y+l,d[2]*t+m,z))+']='+str(v)
H
[
i
,
x
,
y
,
t
,
j
]
+=
w
*
v
H
[
i
,
x
,
y
,
t
,
j
]
+=
w
*
v
return
H
return
H
from
.
import
ConvGrad3D
from
.
import
ConvTransp3D
theano/tests/test_flake8.py
浏览文件 @
692f9012
...
@@ -88,7 +88,6 @@ whitelist_flake8 = [
...
@@ -88,7 +88,6 @@ whitelist_flake8 = [
"tensor/signal/conv.py"
,
"tensor/signal/conv.py"
,
"tensor/signal/tests/test_conv.py"
,
"tensor/signal/tests/test_conv.py"
,
"tensor/signal/tests/test_downsample.py"
,
"tensor/signal/tests/test_downsample.py"
,
"tensor/nnet/Conv3D.py"
,
"tensor/nnet/__init__.py"
,
"tensor/nnet/__init__.py"
,
"tensor/nnet/ConvTransp3D.py"
,
"tensor/nnet/ConvTransp3D.py"
,
"tensor/nnet/sigm.py"
,
"tensor/nnet/sigm.py"
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论