Skip to content
New issue

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

[FEAT] Include a set_seed function #182

Open
jcozar87 opened this issue Aug 12, 2019 · 0 comments
Open

[FEAT] Include a set_seed function #182

jcozar87 opened this issue Aug 12, 2019 · 0 comments

Comments

@jcozar87
Copy link
Contributor

Include a function to set a seed on every possible used library. That is:

import numpy as np
import random
import tensorflow as tf

def set_seed(SEED):
    tf.random.set_random_seed(SEED)
    np.random.seed(SEED)
    random.seed(SEED)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant