From 141a323c3410f9d65b75cd546af69715735db23a Mon Sep 17 00:00:00 2001 From: sweetsky0901 Date: Mon, 4 Dec 2017 11:43:14 +0800 Subject: [PATCH] fix a bug --- paddle/operators/spp_op.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/operators/spp_op.cc b/paddle/operators/spp_op.cc index 026b35de1e7..5e51e73eccb 100644 --- a/paddle/operators/spp_op.cc +++ b/paddle/operators/spp_op.cc @@ -29,7 +29,7 @@ class SppOpMaker : public framework::OpProtoAndCheckerMaker { "(Tensor) The output tensor of spp operator." "N * M." "M = C * H * W"); - AddAttr("pyramid_height", "int", "multi level pooling"); + AddAttr("pyramid_height", "(int), multi level pooling"); AddComment(R"DOC( "Does spatial pyramid pooling on the input image by taking the max, etc. within regions so that the result vector of different sized -- GitLab