chainer.initializers.generate_array¶
-
chainer.initializers.generate_array(initializer, shape, xp, dtype=None)[source]¶ Return initialized array.
The algorithms used to make the new values depend on the concrete derived classes. If the initializer has the
dtypeattribute, it is used to construct the array. Otherwise,chainer.config.dtypeis used instead. See Configuring Chainer for the dtype config.Parameters: - initializer – A callable object that takes N-dimensional array and edits its value.
- shape (tuple) – Shape of a return array.
- xp (module) –
cupyornumpy. - dtype – Dtype specifier. If omitted,
initializer.dtypeis used.
Returns: An initialized array.
Return type: