Is it possible to set deterministic at conf/inference/base.yamlas True and set its seed value from the argument?
|
if conf.inference.deterministic: |
|
make_deterministic() |
Or is it preferable to simply set deterministic to True and a large value of inference.num_designs?
But in that case, it will take longer to get the result because it will be executed sequentially instead of in parallel.
Is there a big difference in output between running in parallel with many seeds with inference.num_designs = 1 and running sequentially with a large value of inference.num_designs?
Is it possible to set deterministic at
conf/inference/base.yamlas True and set its seed value from the argument?RFdiffusion/run_inference.py
Lines 42 to 43 in 1a39202
Or is it preferable to simply set deterministic to True and a large value of inference.num_designs?
But in that case, it will take longer to get the result because it will be executed sequentially instead of in parallel.
Is there a big difference in output between running in parallel with many seeds with inference.num_designs = 1 and running sequentially with a large value of inference.num_designs?