How to Log Pickle files as a part of Mlflow experiment run
I want to log certain artifacts as python pickle as part of mlflow experimentIs there a way to achieve this?
- 3235 Views
- 1 replies
- 0 kudos
Latest Reply
Sure, pickle the object to a local file. Log it to your current run with mlflow.log_artifact. That's it. MLflow lets you log just about anything you want. However if you're experimenting with different variations on a sklearn Pipeline model, you coul...
- 0 kudos