Skip to content

Commit

Permalink
Revert "04_mnist_basics: MSE lacks .sqrt() (fastai#327)" (fastai#450)
Browse files Browse the repository at this point in the history
This reverts commit 665c238.
  • Loading branch information
amritpurshotam authored Apr 25, 2022
1 parent 9f9e597 commit 7b4422a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 04_mnist_basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -3013,7 +3013,7 @@
"metadata": {},
"outputs": [],
"source": [
"def mse(preds, targets): return ((preds-targets)**2).mean().sqrt()"
"def mse(preds, targets): return ((preds-targets)**2).mean()"
]
},
{
Expand Down

0 comments on commit 7b4422a

Please sign in to comment.