Hyperparameter optimization for multi-input and multi-output datasets #1841
Replies: 1 comment 6 replies
-
Hi @madhavkrishnan94. I think the issue might be the In general, that tutorial is not a great resource for your purpose. For a tutorial on multi-objective optimization in BoTorch, I'd recommend this one. If your goal is to just do hyperparameter optimization on your problem without developing a custom BO algorithm, I'd actually recommend skipping BoTorch and using Ax instead. You can find a tutorial on multi-objective optimization with Ax here. Ax uses BoTorch under the hood. |
Beta Was this translation helpful? Give feedback.
-
Hello all.
I am trying to carry out the hyperparameter optimization for my problem that is multi-input and multi-output in nature. I tried following this tutorial.
To start off, I ran the tutorial as is and it ran without errors. Then, I tried to modify
train_X
as a three-dimensional one by defining it asWhen I run the notebook after this change, I get a
error at the following line:
output = model(train_X)
Any leads on correct/better ways of running the hyperparameter optimization for these kinds of multi-dimensional datasets would be greatly appreciated.
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions