137 lines
2.0 KiB
Python
137 lines
2.0 KiB
Python
import jax
|
|
import jax.numpy as jnp
|
|
from jax import jit
|
|
|
|
|
|
@jit
|
|
def sigmoid_act(z):
|
|
z = jnp.clip(z * 5, -60, 60)
|
|
return 1 / (1 + jnp.exp(-z))
|
|
|
|
|
|
@jit
|
|
def tanh_act(z):
|
|
z = jnp.clip(z * 2.5, -60, 60)
|
|
return jnp.tanh(z)
|
|
|
|
|
|
@jit
|
|
def sin_act(z):
|
|
z = jnp.clip(z * 5, -60, 60)
|
|
return jnp.sin(z)
|
|
|
|
|
|
@jit
|
|
def gauss_act(z):
|
|
z = jnp.clip(z, -3.4, 3.4)
|
|
return jnp.exp(-5 * z ** 2)
|
|
|
|
|
|
@jit
|
|
def relu_act(z):
|
|
return jnp.maximum(z, 0)
|
|
|
|
|
|
@jit
|
|
def elu_act(z):
|
|
return jnp.where(z > 0, z, jnp.exp(z) - 1)
|
|
|
|
|
|
@jit
|
|
def lelu_act(z):
|
|
leaky = 0.005
|
|
return jnp.where(z > 0, z, leaky * z)
|
|
|
|
|
|
@jit
|
|
def selu_act(z):
|
|
lam = 1.0507009873554804934193349852946
|
|
alpha = 1.6732632423543772848170429916717
|
|
return jnp.where(z > 0, lam * z, lam * alpha * (jnp.exp(z) - 1))
|
|
|
|
|
|
@jit
|
|
def softplus_act(z):
|
|
z = jnp.clip(z * 5, -60, 60)
|
|
return 0.2 * jnp.log(1 + jnp.exp(z))
|
|
|
|
|
|
@jit
|
|
def identity_act(z):
|
|
return z
|
|
|
|
|
|
@jit
|
|
def clamped_act(z):
|
|
return jnp.clip(z, -1, 1)
|
|
|
|
|
|
@jit
|
|
def inv_act(z):
|
|
return 1 / z
|
|
|
|
|
|
@jit
|
|
def log_act(z):
|
|
z = jnp.maximum(z, 1e-7)
|
|
return jnp.log(z)
|
|
|
|
|
|
@jit
|
|
def exp_act(z):
|
|
z = jnp.clip(z, -60, 60)
|
|
return jnp.exp(z)
|
|
|
|
|
|
@jit
|
|
def abs_act(z):
|
|
return jnp.abs(z)
|
|
|
|
|
|
@jit
|
|
def hat_act(z):
|
|
return jnp.maximum(0, 1 - jnp.abs(z))
|
|
|
|
|
|
@jit
|
|
def square_act(z):
|
|
return z ** 2
|
|
|
|
|
|
@jit
|
|
def cube_act(z):
|
|
return z ** 3
|
|
|
|
|
|
ACT_TOTAL_LIST = [sigmoid_act, tanh_act, sin_act, gauss_act, relu_act, elu_act, lelu_act, selu_act, softplus_act,
|
|
identity_act, clamped_act, inv_act, log_act, exp_act, abs_act, hat_act, square_act, cube_act]
|
|
|
|
act_name2key = {
|
|
'sigmoid': 0,
|
|
'tanh': 1,
|
|
'sin': 2,
|
|
'gauss': 3,
|
|
'relu': 4,
|
|
'elu': 5,
|
|
'lelu': 6,
|
|
'selu': 7,
|
|
'softplus': 8,
|
|
'identity': 9,
|
|
'clamped': 10,
|
|
'inv': 11,
|
|
'log': 12,
|
|
'exp': 13,
|
|
'abs': 14,
|
|
'hat': 15,
|
|
'square': 16,
|
|
'cube': 17,
|
|
}
|
|
|
|
|
|
@jit
|
|
def act(idx, z):
|
|
idx = jnp.asarray(idx, dtype=jnp.int32)
|
|
# change idx from float to int
|
|
return jax.lax.switch(idx, ACT_TOTAL_LIST, z)
|
|
|