Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jph00 committed Apr 25, 2022
1 parent b87a476 commit 93d7698
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions 04_mnist_basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -3896,6 +3896,7 @@
"metadata": {},
"outputs": [],
"source": [
"with torch.no_grad(): weights[0] *= 1.0001"
]
},
{
Expand Down
1 change: 0 additions & 1 deletion 13_convolutions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -3285,7 +3285,6 @@
}
],
"source": [
"matplotlib.rcParams['image.cmap']='viridis' "
"learn.activation_stats.color_dim(-2)"
]
},
Expand Down
2 changes: 1 addition & 1 deletion clean/04_mnist_basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@
"metadata": {},
"outputs": [],
"source": [
"corrects = (preds>0.5).float() == train_y\n",
"corrects = (preds>0.0).float() == train_y\n",
"corrects"
]
},
Expand Down

0 comments on commit 93d7698

Please sign in to comment.