- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
โ06-25-2021 10:42 AM
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

