Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
d3f219aa
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
694
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
d3f219aa
编写于
8月 21, 2017
作者:
Y
Yu Yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Change IdentityOp to ScaleOp
上级
c108d610
变更
11
显示空白变更内容
内联
并排
Showing
11 changed file
with
158 addition
and
14 deletion
+158
-14
paddle/framework/CMakeLists.txt
paddle/framework/CMakeLists.txt
+1
-1
paddle/framework/pybind.cc
paddle/framework/pybind.cc
+2
-1
paddle/framework/tensor.h
paddle/framework/tensor.h
+4
-1
paddle/operators/CMakeLists.txt
paddle/operators/CMakeLists.txt
+1
-1
paddle/operators/net_op.cc
paddle/operators/net_op.cc
+7
-2
paddle/operators/scale_op.cc
paddle/operators/scale_op.cc
+102
-0
paddle/operators/scale_op.cu
paddle/operators/scale_op.cu
+3
-2
paddle/operators/scale_op.h
paddle/operators/scale_op.h
+12
-4
python/paddle/v2/framework/tests/CMakeLists.txt
python/paddle/v2/framework/tests/CMakeLists.txt
+1
-1
python/paddle/v2/framework/tests/gradient_checker.py
python/paddle/v2/framework/tests/gradient_checker.py
+6
-1
python/paddle/v2/framework/tests/test_scale_and_identity_op.py
...n/paddle/v2/framework/tests/test_scale_and_identity_op.py
+19
-0
未找到文件。
paddle/framework/CMakeLists.txt
浏览文件 @
d3f219aa
...
@@ -56,5 +56,5 @@ cc_library(paddle_pybind SHARED
...
@@ -56,5 +56,5 @@ cc_library(paddle_pybind SHARED
uniform_random_op
uniform_random_op
gaussian_random_op
gaussian_random_op
fill_zeros_like_op
fill_zeros_like_op
identity
_op
)
scale
_op
)
endif
(
WITH_PYTHON
)
endif
(
WITH_PYTHON
)
paddle/framework/pybind.cc
浏览文件 @
d3f219aa
...
@@ -42,7 +42,8 @@ USE_OP(fill_zeros_like);
...
@@ -42,7 +42,8 @@ USE_OP(fill_zeros_like);
USE_OP_ITSELF
(
recurrent_op
);
USE_OP_ITSELF
(
recurrent_op
);
USE_OP
(
gaussian_random
);
USE_OP
(
gaussian_random
);
USE_OP
(
uniform_random
);
USE_OP
(
uniform_random
);
USE_OP
(
identity
);
USE_OP
(
scale
);
USE_OP_ITSELF
(
identity
);
namespace
paddle
{
namespace
paddle
{
namespace
framework
{
namespace
framework
{
...
...
paddle/framework/tensor.h
浏览文件 @
d3f219aa
...
@@ -105,7 +105,10 @@ class Tensor {
...
@@ -105,7 +105,10 @@ class Tensor {
template
<
typename
T
>
template
<
typename
T
>
inline
Tensor
Slice
(
const
int
&
begin_idx
,
const
int
&
end_idx
)
const
;
inline
Tensor
Slice
(
const
int
&
begin_idx
,
const
int
&
end_idx
)
const
;
platform
::
Place
place
()
const
{
return
holder_
->
place
();
}
platform
::
Place
place
()
const
{
PADDLE_ENFORCE_NOT_NULL
(
holder_
,
"Tensor get place() must contains holder"
);
return
holder_
->
place
();
}
private:
private:
template
<
typename
T
>
template
<
typename
T
>
...
...
paddle/operators/CMakeLists.txt
浏览文件 @
d3f219aa
...
@@ -68,4 +68,4 @@ op_library(recurrent_op SRCS recurrent_op.cc rnn/recurrent_op_utils.cc
...
@@ -68,4 +68,4 @@ op_library(recurrent_op SRCS recurrent_op.cc rnn/recurrent_op_utils.cc
DEPS framework_proto tensor op_registry operator net_op
)
DEPS framework_proto tensor op_registry operator net_op
)
op_library
(
uniform_random_op
op_library
(
uniform_random_op
SRCS uniform_random_op.cc uniform_random_op.cu
)
SRCS uniform_random_op.cc uniform_random_op.cu
)
op_library
(
identity_op SRCS identity_op.cc identity
_op.cu DEPS net_op
)
op_library
(
scale_op SRCS scale_op.cc scale
_op.cu DEPS net_op
)
paddle/operators/net_op.cc
浏览文件 @
d3f219aa
...
@@ -68,10 +68,15 @@ std::string NetOp::DebugString() const {
...
@@ -68,10 +68,15 @@ std::string NetOp::DebugString() const {
bool
NetOp
::
IsNetOp
()
const
{
return
true
;
}
bool
NetOp
::
IsNetOp
()
const
{
return
true
;
}
std
::
vector
<
std
::
string
>
NetOp
::
OutputVars
(
bool
has_intermediate
)
const
{
std
::
vector
<
std
::
string
>
NetOp
::
OutputVars
(
bool
has_intermediate
)
const
{
std
::
vector
<
std
::
string
>
all
;
for
(
auto
&
pair
:
this
->
outputs_
)
{
for
(
auto
&
var_name
:
pair
.
second
)
{
all
.
push_back
(
var_name
);
}
}
if
(
has_intermediate
)
{
if
(
has_intermediate
)
{
return
this
->
outputs_
.
at
(
kAll
)
;
return
all
;
}
}
auto
&
all
=
this
->
outputs_
.
at
(
kAll
);
std
::
vector
<
std
::
string
>
ret_val
;
std
::
vector
<
std
::
string
>
ret_val
;
for
(
auto
&
each
:
all
)
{
for
(
auto
&
each
:
all
)
{
if
(
!
Contains
(
intermediate_outputs_
,
each
))
{
if
(
!
Contains
(
intermediate_outputs_
,
each
))
{
...
...
paddle/operators/
identity
_op.cc
→
paddle/operators/
scale
_op.cc
浏览文件 @
d3f219aa
...
@@ -12,15 +12,15 @@
...
@@ -12,15 +12,15 @@
See the License for the specific language governing permissions and
See the License for the specific language governing permissions and
limitations under the License. */
limitations under the License. */
#include "paddle/operators/
identity
_op.h"
#include "paddle/operators/
scale
_op.h"
#include "paddle/operators/net_op.h"
#include "paddle/operators/net_op.h"
namespace
paddle
{
namespace
paddle
{
namespace
operators
{
namespace
operators
{
class
Identity
Op
:
public
framework
::
OperatorWithKernel
{
class
Scale
Op
:
public
framework
::
OperatorWithKernel
{
public:
public:
Identity
Op
(
const
std
::
string
&
type
,
const
VarNameMap
&
inputs
,
Scale
Op
(
const
std
::
string
&
type
,
const
VarNameMap
&
inputs
,
const
VarNameMap
&
outputs
,
const
framework
::
AttributeMap
&
attrs
)
const
VarNameMap
&
outputs
,
const
framework
::
AttributeMap
&
attrs
)
:
OperatorWithKernel
(
type
,
inputs
,
outputs
,
attrs
)
{}
:
OperatorWithKernel
(
type
,
inputs
,
outputs
,
attrs
)
{}
...
@@ -32,40 +32,71 @@ class IdentityOp : public framework::OperatorWithKernel {
...
@@ -32,40 +32,71 @@ class IdentityOp : public framework::OperatorWithKernel {
}
}
};
};
class
IdentityOpMaker
:
public
framework
::
OpProtoAndCheckerMaker
{
template
<
typename
AttrType
>
class
ScaleOpMaker
:
public
framework
::
OpProtoAndCheckerMaker
{
public:
public:
IdentityOpMaker
(
framework
::
OpProto
*
proto
,
ScaleOpMaker
(
framework
::
OpProto
*
proto
,
framework
::
OpAttrChecker
*
op_checker
)
framework
::
OpAttrChecker
*
op_checker
)
:
OpProtoAndCheckerMaker
(
proto
,
op_checker
)
{
:
OpProtoAndCheckerMaker
(
proto
,
op_checker
)
{
AddInput
(
"X"
,
"The input tensor of
identity
operator."
).
NotInGradient
();
AddInput
(
"X"
,
"The input tensor of
scale
operator."
).
NotInGradient
();
AddOutput
(
"Out"
,
"The output tensor of
identity
operator."
).
NotInGradient
();
AddOutput
(
"Out"
,
"The output tensor of
scale
operator."
).
NotInGradient
();
AddComment
(
R"DOC(
Identity
operator
AddComment
(
R"DOC(
Scale
operator
The equation is: Out = X
The equation is: Out =
scale*
X
)DOC"
);
)DOC"
);
AddAttr
<
AttrType
>
(
"scale"
,
"scale of scale operator."
).
SetDefault
(
1.0
);
}
}
};
};
// Identity Op's gradient is identity op, too.
// Identity Op's gradient is identity op, too.
// Grad(Out=identity_op(X)) => Grad(X) = identity_op(Grad(Out))
// Grad(Out=scale(X)) => Grad(X) = scale(Grad(Out))
class
IdentityGradOp
:
public
NetOp
{
template
<
typename
AttrType
>
class
ScaleGradOp
:
public
NetOp
{
public:
public:
IdentityGradOp
(
const
std
::
string
&
type
,
const
VarNameMap
&
inputs
,
ScaleGradOp
(
const
std
::
string
&
type
,
const
VarNameMap
&
inputs
,
const
VarNameMap
&
outputs
,
const
VarNameMap
&
outputs
,
const
framework
::
AttributeMap
&
attrs
)
const
framework
::
AttributeMap
&
attrs
)
:
NetOp
(
type
,
inputs
,
outputs
,
attrs
)
{
:
NetOp
(
type
,
inputs
,
outputs
,
attrs
)
{
AddOp
(
framework
::
OpRegistry
::
CreateOp
(
AddOp
(
framework
::
OpRegistry
::
CreateOp
(
"identity"
,
{{
"X"
,
{
Input
(
framework
::
GradVarName
(
"Out"
))}}},
"scale"
,
{{
"X"
,
{
Input
(
framework
::
GradVarName
(
"Out"
))}}},
{{
"Out"
,
{
Output
(
framework
::
GradVarName
(
"X"
))}}},
{}));
{{
"Out"
,
{
Output
(
framework
::
GradVarName
(
"X"
))}}},
{{
"scale"
,
GetAttr
<
AttrType
>
(
"scale"
)}}));
CompleteAddOp
(
false
);
CompleteAddOp
(
false
);
}
}
};
};
// identity is a alias of scale op. This is also a example for creating a alias
// operator.
template
<
typename
AttrType
>
class
IdentityOpMaker
:
public
framework
::
OpProtoAndCheckerMaker
{
public:
IdentityOpMaker
(
framework
::
OpProto
*
proto
,
framework
::
OpAttrChecker
*
op_checker
)
:
OpProtoAndCheckerMaker
(
proto
,
op_checker
)
{
AddInput
(
"X"
,
"input tensor of identity op"
);
AddOutput
(
"Out"
,
"output tensor of identity op"
);
AddComment
(
"identity operator. Just a alias of scale op which scale = 1.0"
);
}
};
template
<
typename
AttrType
>
class
IdentityOp
:
public
NetOp
{
public:
IdentityOp
(
const
std
::
string
&
type
,
const
VarNameMap
&
inputs
,
const
VarNameMap
&
outputs
,
const
framework
::
AttributeMap
&
attrs
)
:
NetOp
(
type
,
inputs
,
outputs
,
attrs
)
{
AddOp
(
framework
::
OpRegistry
::
CreateOp
(
"scale"
,
{{
"X"
,
{
Input
(
"X"
)}}},
{{
"Out"
,
{
Output
(
"Out"
)}}},
{{
"scale"
,
static_cast
<
AttrType
>
(
1
)}}));
}
};
}
// namespace operators
}
// namespace operators
}
// namespace paddle
}
// namespace paddle
namespace
ops
=
paddle
::
operators
;
namespace
ops
=
paddle
::
operators
;
REGISTER_OP
(
identity
,
ops
::
IdentityOp
,
ops
::
IdentityOpMaker
,
identity_grad
,
REGISTER_OP
(
scale
,
ops
::
ScaleOp
,
ops
::
ScaleOpMaker
<
float
>
,
scale_grad
,
ops
::
IdentityGradOp
);
ops
::
ScaleGradOp
<
float
>
);
REGISTER_OP_CPU_KERNEL
(
identity
,
ops
::
IdentityKernel
<
float
>
);
REGISTER_OP_CPU_KERNEL
(
scale
,
ops
::
ScaleKernel
<
paddle
::
platform
::
CPUPlace
,
float
>
);
REGISTER_OP_WITHOUT_GRADIENT
(
identity
,
ops
::
IdentityOp
<
float
>
,
ops
::
IdentityOpMaker
<
float
>
);
paddle/operators/
identity
_op.cu
→
paddle/operators/
scale
_op.cu
浏览文件 @
d3f219aa
...
@@ -12,6 +12,7 @@
...
@@ -12,6 +12,7 @@
See the License for the specific language governing permissions and
See the License for the specific language governing permissions and
limitations under the License. */
limitations under the License. */
#include "paddle/operators/
identity
_op.h"
#include "paddle/operators/
scale
_op.h"
REGISTER_OP_GPU_KERNEL
(
identity
,
paddle
::
operators
::
IdentityKernel
<
float
>
);
REGISTER_OP_GPU_KERNEL
(
scale
,
paddle
::
operators
::
ScaleKernel
<
paddle
::
platform
::
GPUPlace
,
float
>
);
paddle/operators/
identity
_op.h
→
paddle/operators/
scale
_op.h
浏览文件 @
d3f219aa
...
@@ -14,17 +14,25 @@
...
@@ -14,17 +14,25 @@
#pragma once
#pragma once
#include "paddle/framework/eigen.h"
#include "paddle/framework/op_registry.h"
#include "paddle/framework/op_registry.h"
#include "paddle/memory/memcpy.h"
namespace
paddle
{
namespace
paddle
{
namespace
operators
{
namespace
operators
{
template
<
typename
T
>
template
<
typename
Place
,
typename
T
,
typename
AttrType
=
T
>
class
Identity
Kernel
:
public
framework
::
OpKernel
{
class
Scale
Kernel
:
public
framework
::
OpKernel
{
public:
public:
virtual
void
Compute
(
const
framework
::
ExecutionContext
&
context
)
const
{
virtual
void
Compute
(
const
framework
::
ExecutionContext
&
context
)
const
{
auto
*
tensor
=
context
.
Output
<
framework
::
Tensor
>
(
"Out"
);
auto
*
tensor
=
context
.
Output
<
framework
::
Tensor
>
(
"Out"
);
auto
*
in
=
context
.
Input
<
framework
::
Tensor
>
(
"X"
);
auto
*
in
=
context
.
Input
<
framework
::
Tensor
>
(
"X"
);
tensor
->
CopyFrom
<
T
>
(
*
in
,
in
->
place
());
tensor
->
mutable_data
<
T
>
(
in
->
place
());
auto
scale
=
static_cast
<
T
>
(
context
.
op_
.
GetAttr
<
AttrType
>
(
"scale"
));
auto
eigen_out
=
framework
::
EigenVector
<
T
>::
Flatten
(
*
tensor
);
auto
eigen_in
=
framework
::
EigenVector
<
T
>::
Flatten
(
*
in
);
auto
&
dev
=
context
.
GetEigenDevice
<
Place
>
();
eigen_out
.
device
(
dev
)
=
scale
*
eigen_in
;
}
}
};
};
...
...
python/paddle/v2/framework/tests/CMakeLists.txt
浏览文件 @
d3f219aa
...
@@ -27,4 +27,4 @@ py_test(test_uniform_random_op SRCS test_uniform_random_op.py)
...
@@ -27,4 +27,4 @@ py_test(test_uniform_random_op SRCS test_uniform_random_op.py)
py_test
(
test_recurrent_op SRCS test_recurrent_op.py
)
py_test
(
test_recurrent_op SRCS test_recurrent_op.py
)
py_test
(
test_sgd_op SRCS test_sgd_op.py
)
py_test
(
test_sgd_op SRCS test_sgd_op.py
)
py_test
(
test_gradient_checker SRCS test_gradient_checker.py
)
py_test
(
test_gradient_checker SRCS test_gradient_checker.py
)
py_test
(
test_
identity_op SRCS test
_identity_op.py
)
py_test
(
test_
scale_and_identity_op SRCS test_scale_and
_identity_op.py
)
python/paddle/v2/framework/tests/gradient_checker.py
浏览文件 @
d3f219aa
...
@@ -160,8 +160,13 @@ class GradientChecker(unittest.TestCase):
...
@@ -160,8 +160,13 @@ class GradientChecker(unittest.TestCase):
grad_tensor
.
set
(
data
,
place
)
grad_tensor
.
set
(
data
,
place
)
# run backward op
# run backward op
for
name
in
backward_op
.
outputs
():
backward_outs
=
backward_op
.
outputs
()
backward_names
=
[
item
for
key
in
backward_outs
for
item
in
backward_outs
[
key
]
]
for
name
in
backward_names
:
scope
.
new_var
(
name
)
scope
.
new_var
(
name
)
backward_op
.
infer_shape
(
scope
)
backward_op
.
infer_shape
(
scope
)
backward_op
.
run
(
scope
,
ctx
)
backward_op
.
run
(
scope
,
ctx
)
...
...
python/paddle/v2/framework/tests/test_identity_op.py
→
python/paddle/v2/framework/tests/test_
scale_and_
identity_op.py
浏览文件 @
d3f219aa
...
@@ -2,6 +2,7 @@ import unittest
...
@@ -2,6 +2,7 @@ import unittest
from
op_test_util
import
OpTestMeta
from
op_test_util
import
OpTestMeta
from
gradient_checker
import
GradientChecker
,
create_op
from
gradient_checker
import
GradientChecker
,
create_op
import
numpy
as
np
import
numpy
as
np
from
paddle.v2.framework.op
import
Operator
class
IdentityTest
(
unittest
.
TestCase
):
class
IdentityTest
(
unittest
.
TestCase
):
...
@@ -20,5 +21,23 @@ class IdentityGradOpTest(GradientChecker):
...
@@ -20,5 +21,23 @@ class IdentityGradOpTest(GradientChecker):
self
.
check_grad
(
op
,
inputs
,
set
(
"X"
),
"Out"
)
self
.
check_grad
(
op
,
inputs
,
set
(
"X"
),
"Out"
)
class
ScaleTest
(
unittest
.
TestCase
):
__metaclass__
=
OpTestMeta
def
setUp
(
self
):
self
.
type
=
"scale"
self
.
inputs
=
{
'X'
:
np
.
random
.
random
((
32
,
784
)).
astype
(
"float32"
)}
self
.
attrs
=
{
'scale'
:
-
2.3
}
self
.
outputs
=
{
'Out'
:
self
.
inputs
[
'X'
]
*
self
.
attrs
[
'scale'
]}
class
ScaleGradTest
(
GradientChecker
):
def
test_normal
(
self
):
op
=
Operator
(
"scale"
,
X
=
"X"
,
Out
=
"Out"
,
scale
=
3.2
)
self
.
check_grad
(
op
,
{
"X"
:
np
.
random
.
random
((
10
,
10
)).
astype
(
"float32"
)},
set
(
"X"
),
"Out"
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
unittest
.
main
()
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录