You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Currently we use np.random.rand to perform draws from prior which may exhibit clustering, thereby potentially biasing SBI training if the Prior.draw function is used for training data generation.
Describe the solution you'd like
Using Latin Hypercube Sampling ensures that the samples are spread more evenly across the entire domain, making it a better choice for high-dimensional spaces when compared to simple random sampling.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Currently we use
np.random.rand
to perform draws from prior which may exhibit clustering, thereby potentially biasing SBI training if thePrior.draw
function is used for training data generation.Describe the solution you'd like
Using Latin Hypercube Sampling ensures that the samples are spread more evenly across the entire domain, making it a better choice for high-dimensional spaces when compared to simple random sampling.
The text was updated successfully, but these errors were encountered: