You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, another question - during the actor's initialization, you change it so that theres normal init for the hidden layer and zero/one weight/bias init for the fc layer, why is this?
Hi there, another question - during the actor's initialization, you change it so that theres normal init for the hidden layer and zero/one weight/bias init for the fc layer, why is this?
` nn.init.normal(self.hidden[0].weight.data,
mean=0., std=math.sqrt(2 / self.hidden[0].in_features))
nn.init.constant(self.hidden[0].bias.data, 0.)
The text was updated successfully, but these errors were encountered: