激活函数
自定义激活函数,用于支持 🤗 Diffusers 中的各种模型。
GELU
类 diffusers.models.activations.GELU
< 源代码 >( dim_in: int dim_out: int approximate: str = 'none' bias: bool = True )
带有 tanh 近似支持的 GELU 激活函数,使用 approximate="tanh"
。
GEGLU
类 diffusers.models.activations.GEGLU
< 源代码 >( dim_in: int dim_out: int bias: bool = True )
门控线性单元激活函数的一个变体。
ApproximateGELU
class diffusers.models.activations.ApproximateGELU
< 源代码 >( dim_in: int dim_out: int bias: bool = True )
高斯误差线性单元 (GELU) 的近似形式。更多详细信息,请参阅这篇论文的第 2 节。