This website requires JavaScript.
Explore
Help
Sign In
TastyPancakes
/
Flux.jl
Watch
1
Star
0
Fork
0
You've already forked Flux.jl
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
526165c897
Flux.jl
/
src
/
activation.jl
6 lines
94 B
Julia
Raw
Normal View
History
Unescape
Escape
update mxnet backend
2016-08-23 13:28:54 +00:00
export
σ
σ
(
x
)
=
1
./
(
1
.+
exp
.
(
-
x
)
)
backprop for sigma
2016-08-24 14:41:30 +00:00
back!
(
::
typeof
(
σ
)
,
Δ
,
x
)
=
Δ
.*
σ
(
x
)
./
(
1.
-
σ
(
x
)
)
Reference in New Issue
Copy Permalink