`BOTORCH_MODULAR` with `Surrogate(SingleTaskGP)` doesn't support `ax.plot.feature_importances.plot_feature_importance_by_feature`, is ARD kernel still used?
See original GitHub issuehttps://github.com/facebook/Ax/issues/771#issuecomment-1011742002
I tried using e.g. SingleTaskGP
, but I was getting an error message that feature importances weren’t supported. However, I’m pretty sure it’s still an ARD kernel based on the docs. Am I missing something basic?
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
No results found
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
One thing that is clear from this is that we are definitely heavily overloading the term “model” 😃
Building off of @bernardbeckerman’s suggestion above, the way you would apply the contents of
BotorchModel.feature_importances
, is, given anAxClient
, using:ax_client.generation_strategy.model.model.surrogate.model
instead ofself.model
that instance method.P.S.: We know
ax_client.generation_strategy.model.model.surrogate.model
is a little ridiculous 😃 There,ax_client.generation_strategy.model
gives the model bridge, thenax_client.generation_strategy.model.model
gives theBoTorchModel
in Ax, thenax_client.generation_strategy.model.model.surrogate.model
gives the underlyingModel
component from BoTorch (e.g.SingleTaskGP
).