Skip to content

Commit 86cf702

Browse files
committed
update.
1 parent c11b361 commit 86cf702

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beginner_source/basics/autogradqs_tutorial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
y = torch.zeros(3) # expected output
3333
w = torch.randn(5, 3, requires_grad=True)
3434
b = torch.randn(3, requires_grad=True)
35-
z = torch.matmul(x, w) + b
35+
z = torch.matmul(x, w)+b
3636
loss = torch.nn.functional.binary_cross_entropy_with_logits(z, y)
3737

3838

0 commit comments

Comments
 (0)