def elu(x, alpha=1.): def _elu(x, alpha=alpha): return F.elu(x) return get_op(_elu, arguments=[alpha])(x)