Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
P
pytensor
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
testgroup
pytensor
Commits
d308c69a
提交
d308c69a
authored
10月 12, 2017
作者:
Frederic Bastien
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix gh-6470. Fix the grad of maximum and minimum when both input have the same value.
上级
a5b4bb3a
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
24 行增加
和
5 行删除
+24
-5
basic.py
theano/scalar/basic.py
+10
-5
test_basic.py
theano/tensor/tests/test_basic.py
+14
-0
没有找到文件。
theano/scalar/basic.py
浏览文件 @
d308c69a
...
@@ -1650,9 +1650,11 @@ class Maximum(BinaryScalarOp):
...
@@ -1650,9 +1650,11 @@ class Maximum(BinaryScalarOp):
if
outputs
[
0
]
.
type
in
discrete_types
:
if
outputs
[
0
]
.
type
in
discrete_types
:
return
[
x
.
zeros_like
()
.
astype
(
theano
.
config
.
floatX
),
return
[
x
.
zeros_like
()
.
astype
(
theano
.
config
.
floatX
),
y
.
zeros_like
()
.
astype
(
theano
.
config
.
floatX
)]
y
.
zeros_like
()
.
astype
(
theano
.
config
.
floatX
)]
# This form handle the case when both value are the same.
gx
=
eq
(
outputs
[
0
],
x
)
*
gz
# In that case, gx will be gz, gy will be 0.
gy
=
eq
(
outputs
[
0
],
y
)
*
gz
e
=
eq
(
outputs
[
0
],
x
)
gx
=
e
*
gz
gy
=
(
constant
(
1
,
dtype
=
gz
.
dtype
)
-
e
)
*
gz
return
(
gx
,
gy
)
return
(
gx
,
gy
)
maximum
=
Maximum
(
upcast_out
,
name
=
'maximum'
)
maximum
=
Maximum
(
upcast_out
,
name
=
'maximum'
)
...
@@ -1686,8 +1688,11 @@ class Minimum(BinaryScalarOp):
...
@@ -1686,8 +1688,11 @@ class Minimum(BinaryScalarOp):
if
outputs
[
0
]
.
type
in
discrete_types
:
if
outputs
[
0
]
.
type
in
discrete_types
:
return
[
x
.
zeros_like
()
.
astype
(
theano
.
config
.
floatX
),
return
[
x
.
zeros_like
()
.
astype
(
theano
.
config
.
floatX
),
y
.
zeros_like
()
.
astype
(
theano
.
config
.
floatX
)]
y
.
zeros_like
()
.
astype
(
theano
.
config
.
floatX
)]
gx
=
eq
(
outputs
[
0
],
x
)
*
gz
# This form handle the case when both value are the same.
gy
=
eq
(
outputs
[
0
],
y
)
*
gz
# In that case, gx will be gz, gy will be 0.
e
=
eq
(
outputs
[
0
],
x
)
gx
=
e
*
gz
gy
=
(
constant
(
1
,
dtype
=
gz
.
dtype
)
-
e
)
*
gz
return
(
gx
,
gy
)
return
(
gx
,
gy
)
minimum
=
Minimum
(
upcast_out
,
name
=
'minimum'
)
minimum
=
Minimum
(
upcast_out
,
name
=
'minimum'
)
...
...
theano/tensor/tests/test_basic.py
浏览文件 @
d308c69a
...
@@ -812,6 +812,20 @@ MaximumInplaceTester = makeBroadcastTester(
...
@@ -812,6 +812,20 @@ MaximumInplaceTester = makeBroadcastTester(
bad_runtime
=
_bad_runtime_broadcast_binary_normal
,
bad_runtime
=
_bad_runtime_broadcast_binary_normal
,
inplace
=
True
)
inplace
=
True
)
def
test_maximum_minimum_grad
():
# Test the discontinuity point.
# We decided that we only pass the gradient to the first input in that case.
x
,
y
=
tensor
.
vectors
(
'xy'
)
for
operator
in
[
tensor
.
maximum
,
tensor
.
minimum
]:
o
=
operator
(
x
,
y
)
g
=
theano
.
grad
(
o
.
sum
(),
[
x
,
y
])
theano
.
printing
.
debugprint
(
g
)
f
=
theano
.
function
([
x
,
y
],
g
)
theano
.
printing
.
debugprint
(
f
,
print_type
=
True
)
assert
np
.
allclose
(
f
([
1
],
[
1
]),
[[
1
],[
0
]])
print
()
MinimumTester
=
makeBroadcastTester
(
MinimumTester
=
makeBroadcastTester
(
op
=
minimum
,
op
=
minimum
,
expected
=
lambda
*
inputs
:
check_floatX
(
inputs
,
np
.
minimum
(
*
inputs
)),
expected
=
lambda
*
inputs
:
check_floatX
(
inputs
,
np
.
minimum
(
*
inputs
)),
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论