You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mlflow offers a some autologging functionnalities for the most common machine learning frameworks (keras, tensorflow, xgboost...). It would be nice to be able to configure these autologging parametersin the mlflow.yml configuration file.
The text was updated successfully, but these errors were encountered:
Advantages of mlflow autologging: it logs metrics automatically during training, and not at the end of the node, which is convenient. For most models, this can be overcome with callbnacks so this is not a big issue.
Drawbacks of mlflow autologging: It logs parameters / models / metrics without names which makes tracking very hard to read. This also conflicts with kedro-mlflow native parameters tracking (which is much more readable) so it is hard to integrate.
Decision: I won't support autologging for now, but I'll document how one can customize it with #442.
Mlflow offers a some autologging functionnalities for the most common machine learning frameworks (keras, tensorflow, xgboost...). It would be nice to be able to configure these autologging parametersin the
mlflow.yml
configuration file.The text was updated successfully, but these errors were encountered: