04_mnist_basics: MSE lacks .sqrt() (#327)

This commit is contained in:
Void01 2020-11-29 15:17:49 +01:00 committed by GitHub
parent 9455f8f058
commit 665c238467
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3013,7 +3013,7 @@
"metadata": {},
"outputs": [],
"source": [
"def mse(preds, targets): return ((preds-targets)**2).mean()"
"def mse(preds, targets): return ((preds-targets)**2).mean().sqrt()"
]
},
{