More space-filling sampling method than tf.uniform
See original GitHub issueDescribe the feature you’d like
In the Box
class the sampling method is tf.random.uniform
. I found it less space-filling than for example
tf.math.sobol_sample
. This will make the metamodel better approximate the function at the initial phase of optimization. it might be good if the user can choose what kind of sampler to use in the Box
class.
as a comparison, botorch had a set of samplers we can select (link) and in the GPflowOpt we have Design
class (link) .
Additional context to give some context what’s available there: link
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (1 by maintainers)
Top Results From Across the Web
Extensible grids: uniform sampling on a space filling curve
Uniform Sampling on a Space Filling Grid 919 could downsample images with fewer visual artefacts this way than by using a two-dimensional. QMC...
Read more >Sampling CAD Models via an Extended Teaching- ...
in this paper, has the ability to obtain space-filling designs in more than 3D design spaces. S-TLBO also ensures sampling space-filling ...
Read more >(PDF) Space-filling experimental designs for constrained ...
In this research, an adaptive method is developed to create space-filling points in arbitrarily constrained spaces. First, a design space ...
Read more >A hydrodynamic prediction model of throttle orifice plate using ...
A global sampling process with space filling method, adaptive sampling method, and neural network is proposed to generate a hydrodynamic ...
Read more >Space-filling trees in sampling-based motion planning
Further extend the method [6] by polynomial maneuvers for robots in scenarios with a single goal. Consider primarily.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
yes. additionally, it might be good to have that sampling customization for generating initial data before the optimization iteration.
I assume you’re particularly looking at how the space is used in the acquisition optimizer. If so, it may also be good to let users customize the acquisition optimizer (which would indirectly allow users to customize the sampling in the optimizer, depending on how that’s done). This is something we intend to do anyway