forked from udacity/nd00333-capstone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvFile.yml
More file actions
27 lines (24 loc) · 741 Bytes
/
envFile.yml
File metadata and controls
27 lines (24 loc) · 741 Bytes
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
# Conda environment specification. The dependencies defined in this file will
# be automatically provisioned for runs with userManagedDependencies=False.
# Details about the Conda environment file format:
# https://conda.io/docs/user-guide/tasks/manage-environments.html#create-env-file-manually
name: project_environment
dependencies:
# The python interpreter version.
# Currently Azure ML only supports 3.8 and later.
- python=3.8.17
- pip:
- azureml-train-automl-runtime==1.52.0
- inference-schema
- azureml-interpret==1.52.0
- azureml-defaults==1.52.0
- numpy==1.22.3
- pandas==1.1.5
- scikit-learn==0.22.1
- py-xgboost==1.3.3
- fbprophet==0.7.1
- holidays==0.10.3
- psutil==5.9.5
channels:
- anaconda
- conda-forge