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 encountered a problem while running the project. I am not sure how to set runSeed in the train function. I hope to receive help. Thank you! def train(workerId, nWorker, filename, runSeed, args):
if num_processes == 1: train(0, 1, saved_filename)
The text was updated successfully, but these errors were encountered:
Hi the runseed only affect the order of data in each epoch when it's using torch.Distributed (num_processes > 1) for data parallel. Any integer will fine.
I encountered a problem while running the project. I am not sure how to set runSeed in the train function. I hope to receive help. Thank you!
def train(workerId, nWorker, filename, runSeed, args):
if num_processes == 1: train(0, 1, saved_filename)
The text was updated successfully, but these errors were encountered: