Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
631b672c
提交
631b672c
authored
6月 27, 2013
作者:
Frederic
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
pep8
上级
8147b59b
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
4 行增加
和
4 行删除
+4
-4
tests.py
theanoconv3d2d/tests.py
+4
-4
没有找到文件。
theanoconv3d2d/tests.py
浏览文件 @
631b672c
...
@@ -2,7 +2,6 @@ import time
...
@@ -2,7 +2,6 @@ import time
import
numpy
import
numpy
from
scipy
import
ndimage
from
scipy
import
ndimage
import
theano
import
theano
from
theano.sandbox
import
cuda
from
theano.sandbox
import
cuda
...
@@ -11,13 +10,13 @@ from conv3d2d import *
...
@@ -11,13 +10,13 @@ from conv3d2d import *
def
test_get_diagonal_subtensor_view
():
def
test_get_diagonal_subtensor_view
():
x
=
numpy
.
arange
(
20
)
.
reshape
(
5
,
4
)
x
=
numpy
.
arange
(
20
)
.
reshape
(
5
,
4
)
xv01
=
get_diagonal_subtensor_view
(
x
,
0
,
1
)
xv01
=
get_diagonal_subtensor_view
(
x
,
0
,
1
)
# test that it works in 2d
# test that it works in 2d
assert
numpy
.
all
(
xv01
==
[[
12
,
9
,
6
,
3
],
[
16
,
13
,
10
,
7
]])
assert
numpy
.
all
(
xv01
==
[[
12
,
9
,
6
,
3
],
[
16
,
13
,
10
,
7
]])
x
=
numpy
.
arange
(
24
)
.
reshape
(
4
,
3
,
2
)
x
=
numpy
.
arange
(
24
)
.
reshape
(
4
,
3
,
2
)
xv01
=
get_diagonal_subtensor_view
(
x
,
0
,
1
)
xv01
=
get_diagonal_subtensor_view
(
x
,
0
,
1
)
xv02
=
get_diagonal_subtensor_view
(
x
,
0
,
2
)
xv02
=
get_diagonal_subtensor_view
(
x
,
0
,
2
)
xv12
=
get_diagonal_subtensor_view
(
x
,
1
,
2
)
xv12
=
get_diagonal_subtensor_view
(
x
,
1
,
2
)
...
@@ -25,7 +24,7 @@ def test_get_diagonal_subtensor_view():
...
@@ -25,7 +24,7 @@ def test_get_diagonal_subtensor_view():
#print 'x', x
#print 'x', x
#print 'xv01', xv01
#print 'xv01', xv01
#print 'xv02', xv02
#print 'xv02', xv02
assert
numpy
.
all
(
xv01
==
[
assert
numpy
.
all
(
xv01
==
[
[[
12
,
13
],
[
8
,
9
],
[
4
,
5
]],
[[
12
,
13
],
[
8
,
9
],
[
4
,
5
]],
[[
18
,
19
],
[
14
,
15
],
[
10
,
11
]]])
[[
18
,
19
],
[
14
,
15
],
[
10
,
11
]]])
...
@@ -94,6 +93,7 @@ def pyconv3d(signals, filters):
...
@@ -94,6 +93,7 @@ def pyconv3d(signals, filters):
#print s_i.shape, f_i.shape, r_i.shape, o_i.shape
#print s_i.shape, f_i.shape, r_i.shape, o_i.shape
r_i
+=
o_i
[
Tf2
:
-
Tf2
,
Hf2
:
-
Hf2
,
Wf2
:
-
Wf2
]
r_i
+=
o_i
[
Tf2
:
-
Tf2
,
Hf2
:
-
Hf2
,
Wf2
:
-
Wf2
]
def
test_conv3d
():
def
test_conv3d
():
Ns
,
Ts
,
C
,
Hs
,
Ws
=
3
,
10
,
3
,
32
,
32
Ns
,
Ts
,
C
,
Hs
,
Ws
=
3
,
10
,
3
,
32
,
32
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论