From 22597ac6840c82e4ba5653097685b1fe5346d489 Mon Sep 17 00:00:00 2001 From: Roger He Date: Thu, 9 May 2019 16:51:51 -0700 Subject: [PATCH] adding macOS specific yml. Install nomkl to workaround openmp issue --- .../automl_env_mac.yml | 22 +++++++++++++++++++ .../automl_setup_mac.sh | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 how-to-use-azureml/automated-machine-learning/automl_env_mac.yml diff --git a/how-to-use-azureml/automated-machine-learning/automl_env_mac.yml b/how-to-use-azureml/automated-machine-learning/automl_env_mac.yml new file mode 100644 index 000000000..b023d8dd6 --- /dev/null +++ b/how-to-use-azureml/automated-machine-learning/automl_env_mac.yml @@ -0,0 +1,22 @@ +name: azure_automl +dependencies: + # The python interpreter version. + # Currently Azure ML only supports 3.5.2 and later. +- nomkl +- python>=3.5.2,<3.6.8 +- nb_conda +- matplotlib==2.1.0 +- numpy>=1.11.0,<=1.16.2 +- cython +- urllib3<1.24 +- scipy>=1.0.0,<=1.1.0 +- scikit-learn>=0.19.0,<=0.20.3 +- pandas>=0.22.0,<0.23.0 +- py-xgboost<=0.80 + +- pip: + # Required packages for AzureML execution, history, and data preparation. + - azureml-sdk[automl,explain] + - azureml-widgets + - pandas_ml + diff --git a/how-to-use-azureml/automated-machine-learning/automl_setup_mac.sh b/how-to-use-azureml/automated-machine-learning/automl_setup_mac.sh index e2250c4bf..f2a5de458 100644 --- a/how-to-use-azureml/automated-machine-learning/automl_setup_mac.sh +++ b/how-to-use-azureml/automated-machine-learning/automl_setup_mac.sh @@ -12,7 +12,7 @@ fi if [ "$AUTOML_ENV_FILE" == "" ] then - AUTOML_ENV_FILE="automl_env.yml" + AUTOML_ENV_FILE="automl_env_mac.yml" fi if [ ! -f $AUTOML_ENV_FILE ]; then