Hi, I am looking at AlphaFold versions in google notebook but there is the expression of random seed somewhere. Actually what does this mean in protein modeling in AlphaFold?I would be very appreciative to introduce about this from someone who knows.
"num_samples (random seeds): Leave this at 1. Beware that if you increase this above 1, you will generate a number of models equal to the product of this value times num_models. This will proportionally increase the time to complete a result."
For computer generation of a series of 'random numbers', a seed value is first provided to kick off the process. The series produced subsequently is meant to approximate randomness, often called pseudo-random number generation. Because it actually is deterministic, using the same seed generates the same stream of pseudo-random numbers. Switching seeds you can get a different stream of pseudo-random numbers, and thus different subsequent calculations & results done with derivatives of that stream.