-
Notifications
You must be signed in to change notification settings - Fork 36
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
WIP: #12 Create a MlflowModelDataSet #56
Conversation
For the record, I really think that MlflowModelDataSet should not perform logging in mlflow (and associated |
Apart from just logging the model as an artifact in a run,
|
Yes, you're totally right. I still think that saving/loading locally and remotely are two different operations that should be performed in different datasets. It would be both easier to manage (for us) and to use (for end users). |
Let's discuss this when on the call. |
Hello @kaemo, when do you plan to finish on this PR? It looks like it is 95% finished, and it is a frequently required feature. What prevent you from merging it right now? The sooner we deploy it, the more we can get feedback to improve it. Feel free to ask if you need help. |
fb68c79
to
c2b1d96
Compare
Codecov Report
@@ Coverage Diff @@
## develop #56 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 20 24 +4
Lines 634 713 +79
=========================================
+ Hits 634 713 +79
Continue to review full report at Codecov.
|
Hello @kaemo, a few updates:
It would be great if we could discuss it this week. Feel free to make any comment if you are not comfortable with these changes |
c2b1d96
to
a166982
Compare
Hello @kaemo, I merge it for the next release. Feel free to reopen if you want to discuss / refactor. Thank you very much for the amazing work! |
Closes #12.
Opening PR to continue discussions about this implementation here.
In this implementation, I'm both saving locally and logging to MLflow.
TODO:
_save
strategy: save+log vs log onlySaving to specified- I wasn't able to find a way to log a model to a particular run.run_id
pyfunc
support