-
Notifications
You must be signed in to change notification settings - Fork 34
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
Make MlflowMetricsDataSet
capable of saving a Dict[str, float]
object, as mlflow.log_metrics()
does
#440
Comments
P.S. I read about |
Hi, this is indeed really something needed and it's been on my to do liste for a long time. As for The reason why it is done like this currently is to maintain consistency between Feel free to open a PR to help this getting real ;) |
Would be interested in helping with this one if needed. Any work on this one already done @Galileo-Galilei? For the movement, I've implemented my own one that I'd like to see replaced soon.
|
I don't think it was ever tackled properly, glad to get a PR if you can @lvijnck ! |
Description
At the moment
MlflowMetricsDataSet
can only save an object which is a nested Dict. For example:However, it cannot save an object like this:
Which is frequently used and e.g.
mlflow
's nativelog_metrics()
API deals fine with it.Context
Having this support would be great to:
MlflowMetricsDataSet
more compatible withmlflow.log_metrics()
Dict
, without the need to convert it to nested format.Possible Implementation
Either add a new
Dataset
or handle this within existingMlflowMetricsDataSet
.The text was updated successfully, but these errors were encountered: