jax.example_libraries.stax 模块#

Stax 是一个从零开始构建的小巧而灵活的神经网络规范库。

您可能不需要导入此模块!Stax 仅作为示例库使用。JAX 还有许多功能更全面的神经网络库,包括 Google 的 Flax 和 DeepMind 的 Haiku

jax.example_libraries.stax.AvgPool(window_shape, strides=None, padding='VALID', spec=None)[source]#

用于构建池化层的函数。

jax.example_libraries.stax.BatchNorm(axis=(0, 1, 2), epsilon=1e-05, center=True, scale=True, beta_init=<function zeros>, gamma_init=<function ones>)[source]#

用于构建批归一化层的函数。

jax.example_libraries.stax.Conv(out_chan, filter_shape, strides=None, padding='VALID', W_init=None, b_init=<function normal.<locals>.init>)#

用于构建通用卷积层的函数。

jax.example_libraries.stax.Conv1DTranspose(out_chan, filter_shape, strides=None, padding='VALID', W_init=None, b_init=<function normal.<locals>.init>)#

用于构建通用转置卷积层的函数。

jax.example_libraries.stax.ConvTranspose(out_chan, filter_shape, strides=None, padding='VALID', W_init=None, b_init=<function normal.<locals>.init>)#

用于构建通用转置卷积层的函数。

jax.example_libraries.stax.Dense(out_dim, W_init=<function variance_scaling.<locals>.init>, b_init=<function normal.<locals>.init>)[source]#

用于构建密集(全连接)层的函数。

jax.example_libraries.stax.Dropout(rate, mode='train')[source]#

用于构建具有给定速率的 Dropout 层的函数。

jax.example_libraries.stax.FanInConcat(axis=-1)[source]#

用于构建扇入连接层的函数。

jax.example_libraries.stax.FanOut(num)[source]#

用于构建扇出层的函数。

jax.example_libraries.stax.GeneralConv(dimension_numbers, out_chan, filter_shape, strides=None, padding='VALID', W_init=None, b_init=<function normal.<locals>.init>)[source]#

用于构建通用卷积层的函数。

jax.example_libraries.stax.GeneralConvTranspose(dimension_numbers, out_chan, filter_shape, strides=None, padding='VALID', W_init=None, b_init=<function normal.<locals>.init>)[source]#

用于构建通用转置卷积层的函数。

jax.example_libraries.stax.MaxPool(window_shape, strides=None, padding='VALID', spec=None)[source]#

用于构建池化层的函数。

jax.example_libraries.stax.SumPool(window_shape, strides=None, padding='VALID', spec=None)[source]#

用于构建池化层的函数。

jax.example_libraries.stax.elementwise(fun, **fun_kwargs)[source]#

在输入上逐元素应用标量函数的层。

jax.example_libraries.stax.parallel(*layers)[source]#

用于并行组合层的组合器。

此组合器生成的层通常与 FanOut 和 FanInSum 层一起使用。

参数:

*layers – 一系列层,每个层都是一个 (init_fun, apply_fun) 对。

返回:

一个新的层,即一个 (init_fun, apply_fun) 对,表示给定层序列的并行组合。特别是,返回的层接受一个输入序列,并返回一个与参数 layers 长度相同的输出序列。

jax.example_libraries.stax.serial(*layers)[source]#

用于串行组合层的组合器。

参数:

*layers – 一系列层,每个层都是一个 (init_fun, apply_fun) 对。

返回:

一个新的层,即一个 (init_fun, apply_fun) 对,表示给定层序列的串行组合。

jax.example_libraries.stax.shape_dependent(make_layer)[source]#

用于延迟层构造函数对,直到输入形状已知。

参数:

make_layer – 一个接受输入形状(一个正整数元组)作为参数,并返回一个 (init_fun, apply_fun) 对的单参数函数。

返回:

一个新的层,即一个 (init_fun, apply_fun) 对,表示由 make_layer 返回的同一层,但其构建被延迟直到输入形状已知。