mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-04 01:40:44 +00:00
ch4
This commit is contained in:
parent
7b4422a79b
commit
a4e253ad8e
@ -3887,7 +3887,7 @@
|
||||
"cell_type": "markdown",
|
||||
"metadata": {},
|
||||
"source": [
|
||||
"Now let's see what the change in accuracy is for a small change in one of the weights:"
|
||||
"Now let's see what the change in accuracy is for a small change in one of the weights (note that we have to ask PyTorch not to calculate gradients as we do this, which is what `with torch.no_grad()` is doing here):"
|
||||
]
|
||||
},
|
||||
{
|
||||
@ -3896,7 +3896,7 @@
|
||||
"metadata": {},
|
||||
"outputs": [],
|
||||
"source": [
|
||||
"weights[0] *= 1.0001"
|
||||
"with torch.no_grad(): weights[0] *= 1.0001"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user