提交 244efd6b 编写于 作者: L Luo Tao

refine doc of sequence_pool_op

上级 0449b9c8
...@@ -47,9 +47,11 @@ class SequencePoolOpMaker : public framework::OpProtoAndCheckerMaker { ...@@ -47,9 +47,11 @@ class SequencePoolOpMaker : public framework::OpProtoAndCheckerMaker {
SequencePoolOpMaker(framework::OpProto* proto, SequencePoolOpMaker(framework::OpProto* proto,
framework::OpAttrChecker* op_checker) framework::OpAttrChecker* op_checker)
: OpProtoAndCheckerMaker(proto, op_checker) { : OpProtoAndCheckerMaker(proto, op_checker) {
AddInput("X", "A LoDTensor, the variable-length input of SequencePoolOp"); AddInput("X",
AddOutput("Out", "A float LoDTensor, the variable-length input of SequencePoolOp");
"A LoDTensor, the variable-length output of SequencePoolOp."); AddOutput(
"Out",
"A float LoDTensor, the variable-length output of SequencePoolOp.");
AddAttr<int>( AddAttr<int>(
"strategy", "strategy",
"(int, default AVERAGE) the pooling strategy of SequencePoolOp.") "(int, default AVERAGE) the pooling strategy of SequencePoolOp.")
...@@ -58,23 +60,22 @@ class SequencePoolOpMaker : public framework::OpProtoAndCheckerMaker { ...@@ -58,23 +60,22 @@ class SequencePoolOpMaker : public framework::OpProtoAndCheckerMaker {
AddComment(R"DOC( AddComment(R"DOC(
SequencePoolOp pools features of all time-steps of each instance. SequencePoolOp pools features of all time-steps of each instance.
For a mini-batch of 3 variable lengths sentences, containing 2, 3, and 2 words: For a mini-batch of 3 variable lengths sentences, containing 2, 3, and 2 time-steps:
X = [[1, 3], [2, 4, 6], [5, 1]], Assume X is a [7,M,N] float LoDTensor, and X->lod()[0] = [0, 2, 5, 7].
Besides, for the sake of simplicity, we assume M=1 and N=1,
and X->lod()[0] = [0, 2, 5, 7] and the value of X = [[1, 3], [2, 4, 6], [5, 1]].
then, for different strategy, we get: Thus, Out is a [3,1,1] float LoDTensor, but Out->lod() is nullptr.
And for different strategy, the value of Out is as follows:
- AVERAGE: Out = [2, 4, 3], where 2=(1+3)/2, 4=(2+4+6)/3, 3=(5+1)/2
- SUM: Out = [4, 12, 6], where 4=1+3, 12=2+4+6, 6=5+1 - AVERAGE: [2, 4, 3], where 2=(1+3)/2, 4=(2+4+6)/3, 3=(5+1)/2
- SQRT: Out = [2.82, 6.93, 4.24], where 2.82=(1+3)/sqrt(2), 6.93=(2+4+6)/sqrt(3), - SUM: [4, 12, 6], where 4=1+3, 12=2+4+6, 6=5+1
4.24=(5+1)/sqrt(2) - SQRT: [2.82, 6.93, 4.24], where 2.82=(1+3)/sqrt(2),
- MAX: Out = [3, 6, 5], where 3=max(1,3), 6=max(2,4,6), 5=max(5,1) 6.93=(2+4+6)/sqrt(3), 4.24=(5+1)/sqrt(2)
- LAST: Out = [3, 6, 1], where 3=last(1,3), 6=last(2,4,6), 1=last(5,1) - MAX: [3, 6, 5], where 3=max(1,3), 6=max(2,4,6), 5=max(5,1)
- FIRST: Out = [1, 2, 5], where 1=first(1,3), 2=first(2,4,6), 5=first(5,1) - LAST: [3, 6, 1], where 3=last(1,3), 6=last(2,4,6), 1=last(5,1)
- FIRST: [1, 2, 5], where 1=first(1,3), 2=first(2,4,6), 5=first(5,1)
and X->lod() is nullptr.
)DOC"); )DOC");
} }
}; };
......
...@@ -67,7 +67,7 @@ class SequencePoolKernel : public framework::OpKernel { ...@@ -67,7 +67,7 @@ class SequencePoolKernel : public framework::OpKernel {
out_e.device(place) = in_e.sum(Eigen::array<int, 1>({{0}})); out_e.device(place) = in_e.sum(Eigen::array<int, 1>({{0}}));
break; break;
default: default:
LOG(FATAL) << "unsupported pooling strategy"; PADDLE_THROW("unsupported pooling strategy");
} }
} }
} }
...@@ -105,7 +105,7 @@ class SequencePoolGradKernel : public framework::OpKernel { ...@@ -105,7 +105,7 @@ class SequencePoolGradKernel : public framework::OpKernel {
in_g_e.device(place) = (out_g_e).broadcast(bcast); in_g_e.device(place) = (out_g_e).broadcast(bcast);
break; break;
default: default:
LOG(FATAL) << "unsupported pooling strategy"; PADDLE_THROW("unsupported pooling strategy");
} }
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册