These notebooks correspond to command line scripts described here:
MLflow Model reports notebooks
MLflow object dump notebooks
You can import the notebooks into Databricks in two ways:
- As a workspace folder
- As a Git Repo folder
See the Workspace CLI.
git clone https://github.com/mlflow/mlflow-reports
databricks workspace import_dir \
databricks_notebooks \
/Users/me@mycompany.com/mlflow-reports
You can load a Git Repo either through the Databricks UI or via the command line.
See Clone a Git Repo & other common Git operations.
Note it's best to use the curl version since the CLI doesn't appear to support the sparse checkout option.
curl \
https://my.company.com/api/2.0/repos \
-H "Authorization: Bearer MY_TOKEN" \
-X POST \
-d ' {
"url": "https://github.com/mlflow/mlflow-reports",
"provider": "gitHub",
"path": "/Repos/me@my.company.com/mlflow-reports",
"sparse_checkout": {
"patterns": [ "databricks_notebooks" ]
}
}'