We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Congratulations on a great job. I've fixed the random seed using the code below, but the output is still different every time.
def init_seed(seed): torch.cuda.manual_seed_all(seed) torch.manual_seed(seed) np.random.seed(seed) random.seed(seed) # torch.backends.cudnn.enabled = False torch.backends.cudnn.deterministic = True torch.backends.cudnn.benchmark = False
The text was updated successfully, but these errors were encountered:
How about trying our original code to fix the generation?
Sorry, something went wrong.
No branches or pull requests
Congratulations on a great job.
I've fixed the random seed using the code below, but the output is still different every time.
The text was updated successfully, but these errors were encountered: