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
I'm recently realizing I was mistaken on what the POOL_SIZE hyper-parameter was doing. Changing this hyper-parameter in the test script doesn't change the model search space, but rather the spacing and granularity between the output points using the hypercube object and sobol random number generation (https://en.wikipedia.org/wiki/Sobol_sequence). We initialize HyperCubePool.numpoints to the poolsize.
Perhaps a short explanation in the README or some links to external resources on how this is working would be very helpful.
vlall
changed the title
Clearer documentation on what some of these functions are actually doing
Clearer documentation on what functions/hyper-parameters are actually doing
Apr 28, 2019
I'm recently realizing I was mistaken on what the
POOL_SIZE
hyper-parameter was doing. Changing this hyper-parameter in the test script doesn't change the model search space, but rather the spacing and granularity between the output points using the hypercube object and sobol random number generation (https://en.wikipedia.org/wiki/Sobol_sequence). We initializeHyperCubePool.numpoints
to the poolsize.Perhaps a short explanation in the README or some links to external resources on how this is working would be very helpful.
When generating a
1-D
,n=10
array we see:python random number generator
sobol random number generator
The text was updated successfully, but these errors were encountered: