Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
22abb6b3
P
Paddle
项目概览
机器未来
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
22abb6b3
编写于
2月 23, 2022
作者:
L
Leo Chen
提交者:
GitHub
2月 23, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix 'is with a literal' warning (#39798)
* fix 'is with a literal' * fix typo
上级
9880595a
变更
11
隐藏空白更改
内联
并排
Showing
11 changed file
with
14 addition
and
14 deletion
+14
-14
python/paddle/fluid/dygraph/amp/auto_cast.py
python/paddle/fluid/dygraph/amp/auto_cast.py
+1
-1
python/paddle/fluid/framework.py
python/paddle/fluid/framework.py
+1
-1
python/paddle/fluid/tests/unittests/op_test.py
python/paddle/fluid/tests/unittests/op_test.py
+1
-1
python/paddle/nn/functional/loss.py
python/paddle/nn/functional/loss.py
+2
-2
python/paddle/nn/functional/norm.py
python/paddle/nn/functional/norm.py
+1
-1
python/paddle/nn/layer/conv.py
python/paddle/nn/layer/conv.py
+1
-1
python/paddle/nn/layer/norm.py
python/paddle/nn/layer/norm.py
+2
-2
python/paddle/nn/layer/rnn.py
python/paddle/nn/layer/rnn.py
+1
-1
python/paddle/nn/layer/vision.py
python/paddle/nn/layer/vision.py
+1
-1
python/paddle/tensor/linalg.py
python/paddle/tensor/linalg.py
+1
-1
python/paddle/tensor/math.py
python/paddle/tensor/math.py
+2
-2
未找到文件。
python/paddle/fluid/dygraph/amp/auto_cast.py
浏览文件 @
22abb6b3
...
...
@@ -161,7 +161,7 @@ def pure_fp16_initialize(models):
for
idx
in
range
(
len
(
models
)):
for
layer
in
models
[
idx
].
sublayers
(
include_self
=
True
):
layer
.
_casted_by_pure_fp16
=
True
if
(
layer
.
_dtype
is
'float16'
)
or
isinstance
(
if
(
layer
.
_dtype
==
'float16'
)
or
isinstance
(
layer
,
(
paddle
.
nn
.
BatchNorm
,
paddle
.
nn
.
BatchNorm1D
,
paddle
.
nn
.
BatchNorm2D
,
paddle
.
nn
.
BatchNorm3D
,
paddle
.
nn
.
LayerNorm
)):
...
...
python/paddle/fluid/framework.py
浏览文件 @
22abb6b3
...
...
@@ -2544,7 +2544,7 @@ class Operator(object):
warnings
.
warn
(
"The Op(%s) is not support to set device."
%
type
)
if
'force_cpu'
in
op_attrs
:
if
(
type
is
'less_than'
and
op_attrs
[
'force_cpu'
]
!=
None
if
(
type
==
'less_than'
and
op_attrs
[
'force_cpu'
]
!=
None
)
or
op_attrs
[
'force_cpu'
]
!=
False
:
warnings
.
warn
(
"The Attr(force_cpu) of Op(%s) will be deprecated in the future, "
...
...
python/paddle/fluid/tests/unittests/op_test.py
浏览文件 @
22abb6b3
...
...
@@ -380,7 +380,7 @@ class OpTest(unittest.TestCase):
hasattr
(
self
,
'output_dtype'
)
and
self
.
output_dtype
==
np
.
uint16
)
or
(
hasattr
(
self
,
'mkldnn_data_type'
)
and
getattr
(
self
,
'mkldnn_data_type'
)
is
"bfloat16"
)
or
(
getattr
(
self
,
'mkldnn_data_type'
)
==
"bfloat16"
)
or
(
hasattr
(
self
,
'attrs'
)
and
'mkldnn_data_type'
in
self
.
attrs
and
self
.
attrs
[
'mkldnn_data_type'
]
==
'bfloat16'
)
...
...
python/paddle/nn/functional/loss.py
浏览文件 @
22abb6b3
...
...
@@ -131,7 +131,7 @@ def binary_cross_entropy(input, label, weight=None, reduction='mean',
fluid
.
data_feeder
.
check_variable_and_dtype
(
label
,
'label'
,
[
'float32'
,
'float64'
],
'binary_cross_entropy'
)
sub_name
=
name
if
weight
is
None
and
reduction
is
'none'
else
None
sub_name
=
name
if
weight
is
None
and
reduction
==
'none'
else
None
helper
=
LayerHelper
(
"binary_cross_entropy"
,
name
=
sub_name
)
out
=
helper
.
create_variable_for_type_inference
(
dtype
=
input
.
dtype
)
helper
.
append_op
(
...
...
@@ -144,7 +144,7 @@ def binary_cross_entropy(input, label, weight=None, reduction='mean',
if
weight
is
not
None
:
if
isinstance
(
weight
,
paddle
.
static
.
Variable
):
weight_name
=
name
if
reduction
is
'none'
else
None
weight_name
=
name
if
reduction
==
'none'
else
None
out
=
paddle
.
multiply
(
out
,
weight
,
name
=
weight_name
)
else
:
raise
ValueError
(
...
...
python/paddle/nn/functional/norm.py
浏览文件 @
22abb6b3
...
...
@@ -217,7 +217,7 @@ def batch_norm(x,
helper
=
LayerHelper
(
'batch_norm'
,
**
locals
())
param_dtype
=
x
.
dtype
if
x
.
dtype
is
not
'float16'
else
'float32'
param_dtype
=
x
.
dtype
if
x
.
dtype
!=
'float16'
else
'float32'
saved_mean
=
helper
.
create_variable_for_type_inference
(
dtype
=
param_dtype
,
stop_gradient
=
True
)
saved_variance
=
helper
.
create_variable_for_type_inference
(
...
...
python/paddle/nn/layer/conv.py
浏览文件 @
22abb6b3
...
...
@@ -162,7 +162,7 @@ class _ConvNd(Layer):
main_str
+=
', stride={_stride}'
if
self
.
_padding
!=
0
:
main_str
+=
', padding={_padding}'
if
self
.
_padding_mode
is
not
'zeros'
:
if
self
.
_padding_mode
!=
'zeros'
:
main_str
+=
', padding_mode={_padding_mode}'
if
self
.
output_padding
!=
0
:
main_str
+=
', output_padding={output_padding}'
...
...
python/paddle/nn/layer/norm.py
浏览文件 @
22abb6b3
...
...
@@ -668,7 +668,7 @@ class _BatchNormBase(Layer):
def
extra_repr
(
self
):
main_str
=
'num_features={}, momentum={}, epsilon={}'
.
format
(
self
.
_num_features
,
self
.
_momentum
,
self
.
_epsilon
)
if
self
.
_data_format
is
not
'NCHW'
:
if
self
.
_data_format
!=
'NCHW'
:
main_str
+=
', data_format={}'
.
format
(
self
.
_data_format
)
if
self
.
_name
is
not
None
:
main_str
+=
', name={}'
.
format
(
self
.
_name
)
...
...
@@ -1252,7 +1252,7 @@ class LocalResponseNorm(Layer):
def
extra_repr
(
self
):
main_str
=
'size={}, alpha={}, beta={}, k={}'
.
format
(
self
.
size
,
self
.
alpha
,
self
.
beta
,
self
.
k
)
if
self
.
data_format
is
not
'NCHW'
:
if
self
.
data_format
!=
'NCHW'
:
main_str
+=
', data_format={}'
.
format
(
self
.
data_format
)
if
self
.
name
is
not
None
:
main_str
+=
', name={}'
.
format
(
self
.
name
)
...
...
python/paddle/nn/layer/rnn.py
浏览文件 @
22abb6b3
...
...
@@ -391,7 +391,7 @@ class SimpleRNNCell(RNNCellBase):
def
extra_repr
(
self
):
s
=
'{input_size}, {hidden_size}'
if
self
.
activation
is
not
"tanh"
:
if
self
.
activation
!=
"tanh"
:
s
+=
', activation={activation}'
return
s
.
format
(
**
self
.
__dict__
)
...
...
python/paddle/nn/layer/vision.py
浏览文件 @
22abb6b3
...
...
@@ -82,7 +82,7 @@ class PixelShuffle(Layer):
def
extra_repr
(
self
):
main_str
=
'upscale_factor={}'
.
format
(
self
.
_upscale_factor
)
if
self
.
_data_format
is
not
'NCHW'
:
if
self
.
_data_format
!=
'NCHW'
:
main_str
+=
', data_format={}'
.
format
(
self
.
_data_format
)
if
self
.
_name
is
not
None
:
main_str
+=
', name={}'
.
format
(
self
.
_name
)
...
...
python/paddle/tensor/linalg.py
浏览文件 @
22abb6b3
...
...
@@ -2792,7 +2792,7 @@ def eigvalsh(x, UPLO='L', name=None):
raise
ValueError
(
"The input matrix must be batches of square matrices. But received x's dimention: {}"
.
format
(
x_shape
))
if
UPLO
is
not
'L'
and
UPLO
is
not
'U'
:
if
UPLO
!=
'L'
and
UPLO
!=
'U'
:
raise
ValueError
(
"UPLO must be L or U. But received UPLO is: {}"
.
format
(
UPLO
))
...
...
python/paddle/tensor/math.py
浏览文件 @
22abb6b3
...
...
@@ -3439,7 +3439,7 @@ def erfinv_(x, name=None):
return
_C_ops
.
erfinv_
(
x
)
def
rad2deg
(
x
,
name
=
None
):
"""
r
"""
Convert each of the elements of input x from angles in radians to degrees.
Equation:
...
...
@@ -3498,7 +3498,7 @@ def rad2deg(x, name=None):
return
out
def
deg2rad
(
x
,
name
=
None
):
"""
r
"""
Convert each of the elements of input x from degrees to angles in radians.
Equation:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录