Skip to content

Commit

Permalink
CI:apply auto updated documentation
Browse files Browse the repository at this point in the history
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
jcwchen authored and github-actions[bot] committed Jul 28, 2023
1 parent 34812c9 commit c1081b0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18106,7 +18106,7 @@ This version of the operator has been available since version 13 of the default

### <a name="Slice-13"></a>**Slice-13**</a>

Produces a slice of the input tensor along multiple axes. Similar to numpy:
Produces a slice of the input tensor along multiple axes. Similar to NumPy:
https://numpy.org/doc/stable/user/basics.indexing.html?highlight=slice#slicing-and-striding

Slice uses the `starts`, `ends`, `axes` and `steps` inputs to select a sub-tensor
Expand Down Expand Up @@ -18608,7 +18608,7 @@ This version of the operator has been available since version 13 of the default

### <a name="Transpose-13"></a>**Transpose-13**</a>

Transpose the input tensor similar to numpy.transpose. For example, when
Transpose the input tensor similar to NumPy.transpose. For example, when
perm=(1, 0, 2), given an input tensor of shape (1, 2, 3), the output shape
will be (2, 1, 3).

Expand Down Expand Up @@ -23426,7 +23426,7 @@ This version of the operator has been available since version 19 of the default

### <a name="Reshape-19"></a>**Reshape-19**</a>

Reshape the input tensor similar to numpy.reshape.
Reshape the input tensor similar to NumPy.reshape.
First input is the data tensor, second input is a shape tensor which specifies the output shape. It outputs the reshaped tensor.
At most one dimension of the new shape can be -1. In this case, the value is
inferred from the size of the tensor and the remaining dimensions. A dimension
Expand Down
6 changes: 3 additions & 3 deletions docs/Operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -22087,7 +22087,7 @@ expect(node, inputs=[x], outputs=[y], name="test_relu")

### <a name="Reshape"></a><a name="reshape">**Reshape**</a>

Reshape the input tensor similar to numpy.reshape.
Reshape the input tensor similar to NumPy.reshape.
First input is the data tensor, second input is a shape tensor which specifies the output shape. It outputs the reshaped tensor.
At most one dimension of the new shape can be -1. In this case, the value is
inferred from the size of the tensor and the remaining dimensions. A dimension
Expand Down Expand Up @@ -27301,7 +27301,7 @@ expect(node, inputs=[x], outputs=[y], name="test_size")

### <a name="Slice"></a><a name="slice">**Slice**</a>

Produces a slice of the input tensor along multiple axes. Similar to numpy:
Produces a slice of the input tensor along multiple axes. Similar to NumPy:
https://numpy.org/doc/stable/user/basics.indexing.html?highlight=slice#slicing-and-striding

Slice uses the `starts`, `ends`, `axes` and `steps` inputs to select a sub-tensor
Expand Down Expand Up @@ -31358,7 +31358,7 @@ expect(

### <a name="Transpose"></a><a name="transpose">**Transpose**</a>

Transpose the input tensor similar to numpy.transpose. For example, when
Transpose the input tensor similar to NumPy.transpose. For example, when
perm=(1, 0, 2), given an input tensor of shape (1, 2, 3), the output shape
will be (2, 1, 3).

Expand Down

0 comments on commit c1081b0

Please sign in to comment.