Open ross-p-smith opened 4 years ago
Perhaps adding psutil and/or gcc conda package to your env should work.
name: mlopspython_ci
dependencies:
- gcc
Thanks Alexandre, I did try that, but you cant install gcc in a container (apparently!). We have reverted back to our own ci container but instead of 1.0.85 we are 1.0.83 and we can now use AutoMLStep
Unsure whether this issue should be left open for 1.0.85 of azureml-train-automl
I am attempting to have an AutomMLStep in a new pipeline based off this sample. In order to add this step into my prepare_train.py script I need to use the following
from azureml.train.automl.runtime import AutoMLStep
This is not included in azureml.train.automl.client which is already installed in the mlops container. This 'runtime' library cannot be pip installed using the mcr.microsoft.com/mlops/python:latest container as it has conflicts with numpy and pandas. So I have attempted to build the container myself following the docker-image-pipeline.yml example. However, when I build my own image I am having problems with psutil
My issue is how to AutomMLStep in the mlops pipeline?
Everything works fine in a Notebook!