Local ML workbench configured for Databricks using uv
Project description
ML Workbench
Setup
Environment Configuration for MLFlow Databricks Integration
To direct MLFlow to your Databricks workspace (dev-internal), create a .env file in the project root with the following configuration:
# Set MLflow tracking URI to your Databricks workspace
MLFLOW_TRACKING_URI="databricks"
# Define Databricks datapoint that match your workspace (this one is for dev-internal)
DATABRICKS_HOST="https://dbc-787720e9-26e6.cloud.databricks.com"
# Getting Your Databricks Token
# - Go to your Databricks workspace: https://dbc-787720e9-26e6.cloud.databricks.com
# - Click on your profile icon (top-right)
# - Select "Settings"
# - In "User" section, select "Developer"
# - Go to Access Tokens tab
# - Click Generate New Token
# - Give it a name (e.g., "MLFlow Local Development") and expiry
# - Copy the token (you'll only see it once!)
DATABRICKS_TOKEN="dapi123456781234567890" # <- replace with your own
Steps to set up:
-
Copy
.env.templateto.env:cp .env.template .env
-
Edit
.envand replaceDATABRICKS_TOKENwith your personal access token (see instructions in the comments above). -
The
.envfile is already in.gitignore, so your token won't be committed to version control.
Once configured, MLFlow will automatically log experiments to your Databricks workspace when you run experiments using the ML Workbench.
Git Pre-commit Hook for Automatic Version Increment
This project includes a pre-commit hook that automatically increments the patch version (last number) in pyproject.toml on each commit. For example, 0.0.2 → 0.0.3.
To set up the pre-commit hook:
Option 1: Use the setup script (recommended)
./scripts/setup-pre-commit.sh
Option 2: Manual installation
cp scripts/pre-commit .git/hooks/pre-commit && chmod +x .git/hooks/pre-commit
Verify the hook is set up correctly:
ls -la .git/hooks/pre-commit
You should see the file is executable (-rwxr-xr-x).
How it works:
- On each commit, the hook automatically:
- Reads the current version from
pyproject.toml - Increments the patch version (e.g.,
0.0.2→0.0.3) - Updates
pyproject.tomlwith the new version - Stages the updated file so it's included in your commit
- Reads the current version from
Note: The hook only increments the patch version (last number). To bump minor or major versions, manually edit pyproject.toml before committing.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ml_workbench-0.1.2-py3-none-any.whl.
File metadata
- Download URL: ml_workbench-0.1.2-py3-none-any.whl
- Upload date:
- Size: 30.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.13 {"installer":{"name":"uv","version":"0.9.13"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
944bb24883842e6d3f4df4689ee4d88b0d8f38b74be7195b6aa73a2a9407d600
|
|
| MD5 |
4db496096af2343f6bb7a168fb698d22
|
|
| BLAKE2b-256 |
226701872b8c9b3f858ab41a82ad8daa199766f26557c96ad115acb9dbd18d3c
|