mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-05 18:30:44 +00:00
parent
08746b427e
commit
1cf5630742
@ -976,7 +976,7 @@
|
|||||||
"source": [
|
"source": [
|
||||||
"def binary_cross_entropy(inputs, targets):\n",
|
"def binary_cross_entropy(inputs, targets):\n",
|
||||||
" inputs = inputs.sigmoid()\n",
|
" inputs = inputs.sigmoid()\n",
|
||||||
" return -torch.where(targets==1, inputs, 1-inputs).log().mean()"
|
" return -torch.where(targets==1, 1-inputs, inputs).log().mean()"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user