ray.rllib.core.rl_module.default_model_config.DefaultModelConfig.fcnet_kernel_initializer#
- DefaultModelConfig.fcnet_kernel_initializer: str | Callable | None = None#
Initializer function or class descriptor for the weight/kernel matrices in the stack configured by
fcnet_hiddens
. Supported values are the initializer names (str), classes or functions listed by the frameworks (torch
). See https://pytorch.org/docs/stable/nn.init.html fortorch
. IfNone
(default), the default initializer defined bytorch
is used.