McCormick.jl icon indicating copy to clipboard operation
McCormick.jl copied to clipboard

Add additional activation functions

Open mewilhel opened this issue 4 years ago • 0 comments

  • [ ] tanhshrink(x) = x - tanh(x) (concavoconvex)
  • [ ] relu6(x) = min(max(0, x), 6) (convexoconcave)
  • [ ] mish(x) = x * tanh(softplus(x)) (mixed convexity)
  • [ ] lisht(x) = x * tanh(x)
  • [ ] hardtanh(x) = max(-1, min(1, x)) (softmax)

mewilhel avatar Oct 09 '20 16:10 mewilhel