fix space_to_depth_op unicode problem (#14430)

* fix space_to_depth_op unicode problem

* test=develop
panyx0718-patch-1
Jiabin Yang 6 years ago committed by Tao Luo
parent 142b5ed474
commit 28bd5b7bad

@ -86,7 +86,7 @@ class SpaceToDepthOpMaker : public framework::OpProtoAndCheckerMaker {
.GreaterThan(1); .GreaterThan(1);
AddComment(R"DOC( AddComment(R"DOC(
reorg operator used in Yolo v2. reorg operator used in Yolo v2.
The equation is: C2 = C1/blocksize * blocksize, W2 = W1 blocksize + offset % blocksize, H2 = H1 blocksize + offset / blocksize, The equation is: C2 = C1/blocksize * blocksize, W2 = W1 * blocksize + offset % blocksize, H2 = H1 * blocksize + offset / blocksize,
Reshape Input(X) into the shape according to Attr(blocksize). The Reshape Input(X) into the shape according to Attr(blocksize). The
data in Input(X) are unchanged. data in Input(X) are unchanged.

Loading…
Cancel
Save