-
In line 5 (torch.random.manual_seed(seed=RANDOM_SEED) # try commenting this line out and seeing what happens
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @Reetos, You're right, you don't need You can achieve the full functionality with If you feel the code should be updated to reflect this, please feel free to leave a pull request :) |
Beta Was this translation helpful? Give feedback.
Hi @Reetos,
You're right, you don't need
torch.random.manual_seed()
.You can achieve the full functionality with
torch.manual_seed()
, see the documentation here: https://pytorch.org/docs/stable/generated/torch.manual_seed.htmlIf you feel the code should be updated to reflect this, please feel free to leave a pull request :)