ConstantInit — mmengine 0.10.7 documentation (original) (raw)
- Docs >
- mmengine.model >
- ConstantInit
- 以中文阅读
Shortcuts
class mmengine.model.ConstantInit(val, **kwargs)[source]¶
Initialize module parameters with constant values.
Parameters:
val (int | float) – the value to fill the weights in the module with
bias (int | float) – the value to fill the bias. Defaults to 0.
bias_prob (float, optional) – the probability for bias initialization. Defaults to None.
layer (str | list_[_str] , optional) – the layer will be initialized. Defaults to None.