mlx.nn.celu# class celu(x, alpha=1.0)# 套用連續可微的指數線性單元(CELU)。 逐元素套用 \(\max(0, x) + \min(0, \alpha * (\exp(x / \alpha) - 1))\)。