Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.swp
.aider*
2 changes: 1 addition & 1 deletion autograd/two_layer_net_autograd.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
through the graph to compute gradients of some downstream (scalar) loss with
respect to a Tensor. Concretely if x is a Tensor with x.requires_grad == True
then after backpropagation x.grad will be another Tensor holding the gradient
of x with respect to some scalar value.
of scalar (usually loss) with respect to x.
"""

device = torch.device('cpu')
Expand Down