Skip to content

Commit fe35f83

Browse files
committed
Added comments
1 parent d4a589a commit fe35f83

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

ml_service/pipelines/diabetes_regression_build_train_pipeline.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def main():
2929
print(aml_compute)
3030

3131
# Create a reusable run configuration environment
32+
# Read definition from diabetes_regression/azureml_environment.json
3233
environment = Environment.load_from_directory(e.sources_directory_train)
3334
if (e.collection_uri is not None and e.teamproject_name is not None):
3435
builduri_base = e.collection_uri + e.teamproject_name

ml_service/pipelines/diabetes_regression_build_train_pipeline_with_r.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ def main():
2727
print(aml_compute)
2828

2929
# Create a reusable run configuration environment
30+
# Read definition from diabetes_regression/azureml_environment.json
31+
# Make sure to include `r-essentials'
32+
# in diabetes_regression/conda_dependencies.yml
3033
environment = Environment.load_from_directory(e.sources_directory_train)
3134
if (e.collection_uri is not None and e.teamproject_name is not None):
3235
builduri_base = e.collection_uri + e.teamproject_name

0 commit comments

Comments
 (0)