The comments in reshape_op is wrong (#6565)

del_some_in_makelist
Yu Yang 8 years ago committed by GitHub
parent 79f0ab55de
commit 1ba8f7fe71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -84,9 +84,9 @@ Given a 2-D tensor X with 2 rows and 2 columns
[[1, 2], [3, 4]]
and target shape = [1, 4], the reshape operator will transform
the tensor X into a 1-D tensor:
the tensor X into a 2-D tensor:
[1, 2, 3, 4]
[[1, 2, 3, 4]]
)DOC");
}

Loading…
Cancel
Save