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
I notice that you have write the initialization code for RND_predictor_Model. But I failed to find where and when it has been called.
class RND_predictor_Model(nn.Module):
def init_state_predict_weights(self, m):
for name, param in m.named_parameters():
if 'bias' in name:
nn.init.constant_(param, 0.01)
elif 'weight' in name:
nn.init.constant_(param, 1)
The text was updated successfully, but these errors were encountered:
Thanks for your reply.
But when will lets_init_weights() be called?
I have run the ppo_rnd_taxi_final_blow_pytorch.py, but it seems that lets_init_weights () is never called during the running process.
I notice that you have write the initialization code for RND_predictor_Model. But I failed to find where and when it has been called.
The text was updated successfully, but these errors were encountered: