Skip to content

Commit

Permalink
update prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam-Armstrong committed Nov 5, 2023
1 parent 305bcb0 commit 2132b4a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions resources/fn_docstring_template.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ tensor([4, 6])
>>> x.shape
torch.Size([2])

>>> torch.add(torch.tensor([1, 2]), torch.tensor([3, 4]))
tensor([4, 6])

>>> seqential_list(1, 5)
>>> seq_list = seqential_list(1, 5)
>>> seq_list
[1, 2, 3, 4]
>>> len(seq_list)
4
>>> min(seq_list)
1
"""

0 comments on commit 2132b4a

Please sign in to comment.