ConstantInit¶
- 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.