Replies: 4 comments 3 replies
-
|
Hi @jkhanfri. The model inputs for multi-fidelity models will need to be Alternatively, you could pass in |
Beta Was this translation helpful? Give feedback.
-
|
Hi Sait, It gave me the error I posed above even with the |
Beta Was this translation helpful? Give feedback.
-
|
Can you try passing |
Beta Was this translation helpful? Give feedback.
-
|
I looked into it a bit more and looks like |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I am trying to create a multi-fidelity framework with 3 discrete fidelities that is optimized with the qMultiFidelityMaxValueEntropy function as described in the documentation. I am having some issues with the dimensions of the inputs for each of the two pieces.
As described in the documentation I set my inputs to the SingleTaskMultiFidelityGP function to be a "n x (d + s)" size tensor. Since I have a 3D input space the size of my input tensor is [nx4]. Then for the qMultiFidelityMaxValueEntropy definition I set my candidate_set arg to be a [nx3] size tensor (the documentation asks for a
n x dTensor) randomly sampling the 3D input design space. I have specified my data_fidelities arg to be the correct index and followed much of the setup in this exampleHowever, when I run the BO loop I get the error " Sizes of tensors must match except in dimension 0. Expected size 3 but got size 4 for tensor number 1 in the list."
When I change the candidate_set size to [nx4] it seems to function correctly.
Does this mean that I have to include a fidelity index in the candidate_set? What fidelity do I use for this index, the desired highest fidelity, or a random sampling of the 3 fidelities, like the random sampling of the 3D input design space?
Thank you very much!
Beta Was this translation helpful? Give feedback.
All reactions