jax.nn.initializers.zeros#
- jax.nn.initializers.zeros(key, shape, dtype=<class 'jax.numpy.float64'>)[source]#
一个返回全为零的常量数组的初始化器。
The
key
参数被忽略。>>> import jax, jax.numpy as jnp >>> jax.nn.initializers.zeros(jax.random.key(42), (2, 3), jnp.float32) Array([[0., 0., 0.], [0., 0., 0.]], dtype=float32)
- 参数:
key (KeyArray)
shape (core.Shape)
dtype (DTypeLikeInexact)
- 返回类型: