-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathconda_dependencies.yml
48 lines (37 loc) · 1.55 KB
/
conda_dependencies.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Conda environment specification. The dependencies defined in this file will
# be automatically provisioned for managed runs. These include runs against
# the localdocker, remotedocker, and cluster compute targets.
# Note that this file is NOT used to automatically manage dependencies for the
# local compute target. To provision these dependencies locally, run:
# conda env update --file conda_dependencies.yml
# Details about the Conda environment file format:
# https://conda.io/docs/using/envs.html#create-environment-file-by-hand
# For managing Spark packages and configuration, see spark_dependencies.yml.
# Version of this configuration file's structure and semantics in AzureML.
# This directive is stored in a comment to preserve the Conda file structure.
# [AzureMlVersion] = 2
name: diabetes_regression_training_env
dependencies:
# The python interpreter version.
# Currently Azure ML Workbench only supports 3.5.2 and later.
- python=3.7.*
- pip
- pip:
# Base AzureML SDK
- azureml-sdk==1.6.*
# 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.6.*
# Training deps
- scikit-learn
# Scoring deps
- inference-schema[numpy-support]
# MLOps with R
- azure-storage-blob
# Observability
- opencensus==0.7.7
- opencensus-context==0.1.1
- opencensus-ext-azure==1.0.2
- python-dotenv==0.10.3
# Data Classes
- dataclasses