-
Notifications
You must be signed in to change notification settings - Fork 34
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
Set a default seed
value for gen_kwargs
#169
Comments
Wouldn't this make subsequent runs of synthetic data deterministic (given the same input) ? is this the behaviour desired? |
Great question, @derekhiggins ! Some additional context from @shivchander that came before what is quoted above:
I think the above does indeed miss a problem with using With batching: given a seed, the server will generate a sequence of responses in a single call, and that sequence will repeatable Without batching: given a seed, the server will generate a single, repeatable response to every call, meaning we will generate a sequence of identical samples - instead, we need to generate a sequence of random seeds (one for each request) from the seed! In other words, something like this:
|
PR #137 set a
seed
in one case, but it turns out we could just set a default for all cases instead.from @markmc
question:
answer from @shivchander
The text was updated successfully, but these errors were encountered: