We are using Azure DevOps to submit a Training Job to Databricks. The training job uses a notebook to train a Machine Learning Model. We are using databricks
CLI to submit the job from ADO.
In the notebook, in of the steps, we create a .pkl
file, we want to download this to the build agent and publish it as an artifact in Azure DevOps. How do we do this?
It really depends on how that file is stored:
databrics fs cp 'dbfs:/....' local-path
dbutils.fs.cp
), and then use the previous item