Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
remove space
Browse files Browse the repository at this point in the history
  • Loading branch information
liyujiel committed Aug 14, 2018
1 parent 0198bff commit 03e14d9
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions python/mxnet/ndarray_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,17 @@ class BroadcastToDoc(NDArrayDoc):

class StackDoc(NDArrayDoc):
"""
Examples
Example
--------
Join a sequence of arrays along a new axis.
>>> x = mx.nd.array([1, 2])
>>> y = mx.nd.array([3, 4])
>>> stack(x, y) = [[1, 2],
[3, 4]]
>>> stack(x, y, axis=1) = [[1, 3],
[2, 4]]
>>> stack(x, y)
[[1, 2],
[3, 4]]
>>> stack(x, y, axis=1)
[[1, 3],
[2, 4]]
"""

class CustomDoc(NDArrayDoc):
Expand Down

0 comments on commit 03e14d9

Please sign in to comment.