Custom Surrogate advice (starting with an EvalML pipeline with uncertainties from bootstrapped datasets) #402
-
Thank you for your work. This package is super cool and is being developed very rapidly! I have a model I'd like to make a Surrogate for. The point-estimates for the posterior would come from an EvalML pipeline and the uncertainty values come from models of the same architecture that were trained on bootstrap resampled datasets. I had something working in version 0.10.0, but am coming back to this and see a lot has changed as of 0.11.0. I see you removed I'm moving toward (2) but wanted to thank you and see if this is what you'd recommend. Thank you, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
@JanetMatsen thanks for the kind words and for the interest Indeed some of the examples have been removed, mainly due to two reasons
This was mostly driven by @AdrianSosic and Im sure he will comment with more details. However, I believe, independent of all details, the best path for you could simply be to implement your model as you say derived from our Seems to me the most straight forward template for you. Additional considerations for scaling might apply to your model (the random forest doesnt scale as its not needed, but for how to do it in our framework you could look at other models or follow up via discussion) Perhaps batch recommendation is also irrelevant to you, then pretty much any non-GP model implementation could be followed. |
Beta Was this translation helpful? Give feedback.
-
Hi! This is working great for me. I am playing on comparing GPs, Random, and AutoML surrogates with a synthetic fitness landscape. And yes, I starred your repo. Nice work! |
Beta Was this translation helpful? Give feedback.
@JanetMatsen thanks for the kind words and for the interest
Indeed some of the examples have been removed, mainly due to two reasons
This was mostly driven by @AdrianSosic and Im sure he will comment with more details.
However, I believe, independent of all details, the best path for you could simply be to implement your model as you say derived from our
Surrogate
base. In particular, if you hav…