La Paste
Create new paste
Pastes Archive
2023-03-14 00:18:39
copy
raw
download
function relu($x) { return max(0, $x); } function un_relu($x) { if ($x > 0) { return 1; } else { return 0; } }
↑