Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
d309a022
提交
d309a022
authored
9月 26, 2011
作者:
goodfeli
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #64 from delallea/generic_get_test_value
More generic get_test_value
上级
ffa4e84c
05a84c3a
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
24 行增加
和
14 行删除
+24
-14
op.py
theano/gof/op.py
+17
-13
test_op.py
theano/gof/tests/test_op.py
+7
-1
没有找到文件。
theano/gof/op.py
浏览文件 @
d309a022
...
@@ -10,15 +10,20 @@ __contact__ = "theano-dev <theano-dev@googlegroups.com>"
...
@@ -10,15 +10,20 @@ __contact__ = "theano-dev <theano-dev@googlegroups.com>"
__docformat__
=
"restructuredtext en"
__docformat__
=
"restructuredtext en"
import
logging
import
logging
import
warnings
import
numpy
import
theano
from
theano
import
config
from
theano
import
config
import
cc
import
graph
import
graph
import
numpy
import
utils
import
utils
import
warnings
from
env
import
Env
from
env
import
Env
import
cc
class
CLinkerObject
(
object
):
class
CLinkerObject
(
object
):
...
@@ -549,17 +554,16 @@ class Op(utils.object2, PureOp, CLinkerOp):
...
@@ -549,17 +554,16 @@ class Op(utils.object2, PureOp, CLinkerOp):
def
get_test_value
(
v
):
def
get_test_value
(
v
):
"""
"""
Extract test value from variable v. Raises AttributeError if there is none.
Extract test value from `v`. Raises AttributeError if there is none.
If input `v` is not already a variable, it is turned into one by calling
`as_tensor_variable(v)`, so that this function can be applied e.g.
on numpy arrays or Python lists and scalars, considering them as constants.
For an ndarray, the value is the ndarray itself
For a Constant, the test value is v.value.
For a Constant, the test value is v.value.
For a Shared variable, it is the internal value.
For a Shared variable, it is the internal value.
For another Variable, it is the content of v.tag.test_value."""
For another Variable, it is the content of v.tag.test_value.
"""
try
:
v_tensor
=
theano
.
tensor
.
as_tensor_variable
(
v
)
return
PureOp
.
_get_test_value
(
v
)
return
PureOp
.
_get_test_value
(
v_tensor
)
except
AttributeError
:
if
hasattr
(
v
,
'__array__'
):
return
v
raise
theano/gof/tests/test_op.py
浏览文件 @
d309a022
...
@@ -188,10 +188,16 @@ class TestMakeThunk(unittest.TestCase):
...
@@ -188,10 +188,16 @@ class TestMakeThunk(unittest.TestCase):
assert
compute_map
[
o
][
0
]
assert
compute_map
[
o
][
0
]
assert
storage_map
[
o
][
0
]
==
4
assert
storage_map
[
o
][
0
]
==
4
def
test_test_value_python_objects
():
for
x
in
(
range
(
3
),
0
,
0.5
,
1
):
assert
(
op
.
get_test_value
(
x
)
==
x
)
.
all
()
def
test_test_value_ndarray
():
def
test_test_value_ndarray
():
x
=
numpy
.
zeros
((
5
,
5
))
x
=
numpy
.
zeros
((
5
,
5
))
v
=
op
.
get_test_value
(
x
)
v
=
op
.
get_test_value
(
x
)
assert
v
is
x
assert
(
v
==
x
)
.
all
()
def
test_test_value_constant
():
def
test_test_value_constant
():
x
=
T
.
as_tensor_variable
(
numpy
.
zeros
((
5
,
5
)))
x
=
T
.
as_tensor_variable
(
numpy
.
zeros
((
5
,
5
)))
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论