mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-05 02:10:48 +00:00
ch4
This commit is contained in:
parent
7b4422a79b
commit
a4e253ad8e
@ -3887,7 +3887,7 @@
|
|||||||
"cell_type": "markdown",
|
"cell_type": "markdown",
|
||||||
"metadata": {},
|
"metadata": {},
|
||||||
"source": [
|
"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": {},
|
"metadata": {},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
"weights[0] *= 1.0001"
|
"with torch.no_grad(): weights[0] *= 1.0001"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user