jax.nn.initializers.variance_scaling#
- jax.nn.initializers.variance_scaling(scale, mode, distribution, in_axis=-2, out_axis=-1, batch_axis=(), dtype=<class 'jax.numpy.float64'>)[源代码]#
初始化器,其缩放比例会根据权重张量的形状进行调整。
当
distribution="truncated_normal"
或distribution="normal"
时,样本从均值为零且标准差(如果适用,则在截断后)为 \(\sqrt{\frac{scale}{n}}\) 的(截断)正态分布中抽取,其中 n 是如果
mode="fan_in"
,则为权重张量中的输入单元数,如果
mode="fan_out"
,则为输出单元数,或如果
mode="fan_avg"
,则为输入和输出单元数的平均值。
可以通过
in_axis
、out_axis
和batch_axis
配置此初始化器,以用于通用卷积或密集层;不在任何这些参数中的轴被假定为“感受野”(卷积核空间轴)。当
distribution="truncated_normal"
时,样本的绝对值在缩放前会被截断为 2 个标准差。当
distribution="uniform"
时,样本从以下分布中抽取:如果 dtype 为实数,则为均匀区间,或
如果 dtype 为复数,则为均匀圆盘,
均值为零,标准差为 \(\sqrt{\frac{scale}{n}}\),其中 n 的定义如上所述。
- 参数:
scale (RealNumeric) – 缩放因子(正浮点数)。
mode (Literal['fan_in'] | Literal['fan_out'] | Literal['fan_avg']) –
"fan_in"
、"fan_out"
和"fan_avg"
之一。distribution (Literal['truncated_normal'] | Literal['normal'] | Literal['uniform']) – 要使用的随机分布。为
"truncated_normal"
、"normal"
和"uniform"
之一。batch_axis (Sequence[int]) – 权重数组中应忽略的轴或轴序列。
dtype (DTypeLikeInexact) – 权重的 dtype。
- 返回类型:
初始化器