Created
March 8, 2024 18:11
-
-
Save HemachandranD/b74658e67c95a9fdd8ad1bbadbfe5df6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The name of the bundle. run `databricks bundle schema` to see the full bundle settings schema. | |
bundle: | |
name: my_mlops_stacks | |
variables: | |
experiment_name: | |
description: Experiment name for the model training. | |
default: /Users/${workspace.current_user.userName}/${bundle.target}-my_mlops_stacks-experiment | |
model_name: | |
description: Model name for the model training. | |
default: ${bundle.target}-my_mlops_stacks-model | |
cluster_id: | |
description: Cluster id for compute. | |
include: | |
# Resources folder contains ML artifact resources for the ML project that defines model and experiment | |
# And workflows resources for the ML project including model training -> validation -> deployment, | |
# feature engineering, batch inference, data monitoring, metric refresh, alerts and triggering retraining | |
- ./resources/*.yml | |
# Deployment Target specific values for workspace | |
targets: | |
dev: | |
default: true | |
variables: | |
cluster_id: | |
workspace: | |
# TODO: add dev workspace URL | |
host: | |
staging: | |
variables: | |
cluster_id: | |
workspace: | |
host: https://adb-xxxx.xx.azuredatabricks.net | |
prod: | |
variables: | |
cluster_id: | |
workspace: | |
host: https://adb-xxxx.xx.azuredatabricks.net | |
test: | |
variables: | |
cluster_id: | |
workspace: | |
host: https://adb-xxxx.xx.azuredatabricks.net | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment