1
1
# Pipeline template that defines common runtime environment variables.
2
2
variables :
3
-
4
3
# Source Config
5
- # The directory containing the scripts for training, evaluating, and registering the model
4
+ # The directory containing the scripts for training, evaluating, and registering the model
6
5
- name : SOURCES_DIR_TRAIN
7
6
value : diabetes_regression
8
7
# The path to the model training script under SOURCES_DIR_TRAIN
@@ -23,7 +22,7 @@ variables:
23
22
value : mlopspython
24
23
- name : DATASET_NAME
25
24
value : diabetes_ds
26
- # Uncomment DATASTORE_NAME if you have configured non default datastore to point to your data
25
+ # Uncomment DATASTORE_NAME if you have configured non default datastore to point to your data
27
26
# - name: DATASTORE_NAME
28
27
# value: datablobstore
29
28
- name : DATASET_VERSION
@@ -50,25 +49,23 @@ variables:
50
49
# The name for the (docker/webapp) scoring image
51
50
- name : IMAGE_NAME
52
51
value : " diabetestrained"
53
-
52
+
54
53
# Optional. Used by a training pipeline with R on Databricks
55
54
- name : DB_CLUSTER_ID
56
55
value : " "
57
56
58
57
# These are the default values set in ml_service\util\env_variables.py. Uncomment and override if desired.
59
- # Set to false to disable the evaluation step in the ML pipeline and register the newly trained model unconditionally.
58
+ # Set to false to disable the evaluation step in the ML pipeline and register the newly trained model unconditionally.
60
59
# - name: RUN_EVALUATION
61
60
# value: "true"
62
- # Set to false to register the model regardless of the outcome of the evaluation step in the ML pipeline.
61
+ # Set to false to register the model regardless of the outcome of the evaluation step in the ML pipeline.
63
62
# - name: ALLOW_RUN_CANCEL
64
63
# value: "true"
65
64
66
- # For debugging deployment issues. Specify a build id with the MODEL_BUILD_ID pipeline variable at queue time
67
- # to skip training and deploy a model registered by a previous build.
65
+ # For debugging deployment issues. Specify a build id with the MODEL_BUILD_ID pipeline variable at queue time
66
+ # to skip training and deploy a model registered by a previous build.
68
67
- name : modelbuildid
69
68
value : $[coalesce(variables['MODEL_BUILD_ID'], variables['Build.BuildId'])]
70
-
71
-
72
69
# Flag to allow rebuilding the AML Environment after it was built for the first time. This enables dependency updates from conda_dependencies.yaml.
73
70
# - name: AML_REBUILD_ENVIRONMENT
74
71
# value: "false"
0 commit comments