diff --git a/paddle/operators/sequence_concat_op.cc b/paddle/operators/sequence_concat_op.cc index 3d19471618c6bfd4ac95b591f2c4bd7150cc3f90..287fb1942e4a2b17f6d51c9a6b7f6fb71fbaa601 100644 --- a/paddle/operators/sequence_concat_op.cc +++ b/paddle/operators/sequence_concat_op.cc @@ -56,17 +56,17 @@ class SequenceConcatOpMaker : public framework::OpProtoAndCheckerMaker { "sequence_concat Op."); AddAttr("axis", "(int, default 0)" - "The axis which the inputs will be joined with." + "The axis which the inputs will be joined with. " "If axis is 0, the inputs will be joined with LoD index.") .SetDefault(0); AddAttr("level", "(int, default 0)" - "The level at which the inputs will be joined." + "The level at which the inputs will be joined. " "If the level is 0, the inputs will be joined at the nested " - "sequence level." + "sequence level. " "If the level is 1, the inputs will be joined at the " - "sequence level." - "The level should be less than the levels of input") + "sequence level. " + "The level should be less than the level number of inputs.") .SetDefault(0); AddComment(R"DOC( The sequence_concat operator concatenates multiple LoDTensors.