-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compare multiple models and monitor their stage #188
Comments
Hey there--thanks @GitHunter0, these are fantastic questions! Model comparison is something that we have thought about, but are definitely interested in hearing what users would want! What you could do now is have a function run The default api = VetiverAPI(my_model)
api.vetiver_post(my_model.handler_predict, "myendpointname", check_prototype=True) to add another endpoint with the same functionality. Hope that helps! |
Hey @isabelizimm , thanks for your thoughtful feedback.
It is something among those lines but in a more streamlined and detailed fashion. I'm posting two MLFlow UI screens as example:
That worked, I appreciate it. |
@GitHunter0 one thing we've noticed when talking to users is that almost everyone has pretty high customization needs when it comes to model monitoring, so we want to take a "code first" approach to monitoring by creating modular functions (like You may have noticed the Model Card template, and the R side of vetiver does have a monitoring dashboard template (see it rendered and published). These kinds of templates are definitely in scope for vetiver, and our expectation would be that someone like you would use them as a jumping off point for their (individual, customized) needs. Would definitely love to hear more about what you are wanting to do!
|
Hey @juliasilge , sorry for the delay, thanks very much for the detailed follow up.
More of a dashboard, because the needs of my reports are too specific to be included in a general package.
Actually, I would like all of that, they are all helpful features in my opinion, I believe MLflow is a good reference in this regard. And last, It would be nice to have a way to deploy multiple models at once, each one to a specified endpoint. I believe with those additional features, |
Awesome; thank you so much for those details. We're waiting on a flexdashboard-style format for Quarto but in the meantime, we could work on initial reporting examples for model monitoring, comparing multiple models, etc. |
Hey folks,
vetiver
is a pretty nice and straightforward tool to use.The only important thing I'm missing is the ability to compare multiple models and monitor the stage (e.g. 'production') of each model (as MLflow does).
Do you have plans to add that or it is beyond the scope of
vetiver
?And just a side question, in
VetiverAPI()
is it possible to change to a custom endpoint instead of the default 'predict'?Thank you
The text was updated successfully, but these errors were encountered: