Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5de40c6

Browse files
authored
FIX: replace word from option to operator (#2310) (#2314)
1 parent 44bcbdc commit 5de40c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

beginner_source/basics/tensorqs_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
######################################################################
134134
# **Joining tensors** You can use ``torch.cat`` to concatenate a sequence of tensors along a given dimension.
135135
# See also `torch.stack <https://pytorch.org/docs/stable/generated/torch.stack.html>`__,
136-
# another tensor joining option that is subtly different from ``torch.cat``.
136+
# another tensor joining operator that is subtly different from ``torch.cat``.
137137
t1 = torch.cat([tensor, tensor, tensor], dim=1)
138138
print(t1)
139139

0 commit comments

Comments
 (0)