From 506d557ebd51a0d38a6896b31f957b36cd497067 Mon Sep 17 00:00:00 2001 From: Tom Care Date: Fri, 10 Apr 2020 12:38:44 -0700 Subject: [PATCH] Fix training/scoring conda deps (#262) Azure deprecated their top level meta-package which led to a deprecation error. We don't actually need this top level package. I took the opportunity to clean up the conda deps using the dependency tree. - Trimmed the package list - Explicitly list pip to avoid conda warning - Use azureml-defaults for WebApp dependencies - Lock azureml-sdk and azureml-defaults versions - Add comments for dependencies --- diabetes_regression/conda_dependencies.yml | 31 +++++++++++----------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/diabetes_regression/conda_dependencies.yml b/diabetes_regression/conda_dependencies.yml index 76350a0..ab1b354 100644 --- a/diabetes_regression/conda_dependencies.yml +++ b/diabetes_regression/conda_dependencies.yml @@ -18,23 +18,22 @@ name: diabetes_regression_training_env dependencies: # The python interpreter version. # Currently Azure ML Workbench only supports 3.5.2 and later. - - python=3.7.5 - # Required by azureml-defaults, installed separately through Conda to - # get a prebuilt version and not require build tools for the install. - - psutil=5.6 #latest + - python=3.7.* + - pip - pip: - # Required packages for AzureML execution, history, and data preparation. - - azureml-model-management-sdk==1.0.1b6.post1 - - azureml-sdk==1.0.74 - - scipy==1.3.1 - - scikit-learn==0.22 - - pandas==0.25.3 - - numpy==1.17.3 - - joblib==0.14.0 - - gunicorn==19.9.0 - - flask==1.1.1 + # Base AzureML SDK + - azureml-sdk==1.2.* + + # Minimum required for the scoring environment. Must match AzureML SDK version. + # https://docs.microsoft.com/en-us/azure/machine-learning/concept-environments + - azureml-defaults==1.2.* + + # Training deps + - scikit-learn + + # Scoring deps - inference-schema[numpy-support] - - azure + + # MLOps with R - azure-storage-blob - - azureml-dataprep