Sync MLflow tracking in Kedro and Pytorch Lightning #533
Unanswered
hamiddimyati
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hi team,
I have
model_trainingpipeline which contain training deep neural networks using Pytorch Lightning. I want to log all metrics during training and saved those asMlflowMetricHistoryDatasetwithin Kedro catalog. How to make it possible?I tried using MLflow tracking as logger for Lightning trainer. The metrics are logged in the same MLflow directory but in different run name (not
model_training). Any helps for my issue are really appreciated. Thanks[UPDATE]
Now, I can link the MLflow as Lightning logger with Kedro pipeline run. However, still wondering how to save the metrics and also the trained model in Kedro catalog, as
MlflowMetricsHistoryDatasetandMlflowArtifactDatasetrespectively.All reactions