what is the initialized weights method of a model in Pytroch?
Each module has its own reset_parameters
method responsible to reset and initialize the parameters. You can find this method for e.g. nn.Linear
layers here.
what is the initialized weights method of a model in Pytroch?
Each module has its own reset_parameters
method responsible to reset and initialize the parameters. You can find this method for e.g. nn.Linear
layers here.