- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2021 10:42 AM
They seem to have similar functions. What is the recommended pattern here?
- Labels:
-
Log Model
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2021 03:26 PM
mlflow.<model-type>.log_model(model, ...) saves the model to the MLflow tracking server.
mlflow.<model-type>.save_model(model, modelpath) saved the model locally to a DBFS path.
More details at https://docs.databricks.com/applications/mlflow/models.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2021 03:26 PM
mlflow.<model-type>.log_model(model, ...) saves the model to the MLflow tracking server.
mlflow.<model-type>.save_model(model, modelpath) saved the model locally to a DBFS path.
More details at https://docs.databricks.com/applications/mlflow/models.html

