Hello, I am wondering how to set a global seed to repeat the results? Or how to set seeds separatly? Thanks!
Presently you need to set the random seed yourself to have an exact repeat. Some parts of Modulus-Sym have fixed seeds for reproducibility already (data loaders), but not all of it. Have a look at the PyTorch docs on this matter for what seeds to set.
Hi,
Thank you for your reply. I will try to set the seed myself. :)