sajith_appukutt
Databricks Employee
Databricks Employee

You could mount an s3 bucket in the workspace and save your model using the mounts DBFS path

For e.g

modelpath = "/dbfs/my-s3-bucket/model-%f-%f" % (alpha, l1_ratio)
mlflow.sklearn.save_model(lr, modelpath)

View solution in original post