Optimal Slice of 3D space #1340
-
Hi, I am currently looking into utilizing botorch for finding the optimal "slice" of a 3d geometry for improving the estimate of the 3D data. I will be physically probing a volume from the top surface, and use BO to suggest the next probe location and rotation. My probe data and GP model will be in the form of an XYZ grid of data, and the training data will be an array of points on the sensing plane of the probe. I am able to locate the optimal probing point within the volume with a standard Bayesian Optimization Loop (model:FixedNoiseGP, acquisition: EI), but am unsure on how to optimize the planar rotation. Could anyone suggest how I may be able to achieve this? Many Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hmm not sure I fully understand, but is your problem that you're measuring What I'm trying to figure out is whether this is about how to formulate the problem or more a trigonometry or modeling question. |
Beta Was this translation helpful? Give feedback.
Hmm not sure I fully understand, but is your problem that you're measuring
(x,y,z)
values (cartesian coordinates) but what you're controlling (and optimizing over) is(x,y,phi)
where there is a rotation angle? What is your utility function here? Seems like there would need to be some aggregation across(x,y,z)
observations on the sensing plane?What I'm trying to figure out is whether this is about how to formulate the problem or more a trigonometry or modeling question.