-
Notifications
You must be signed in to change notification settings - Fork 124
environments responsibleai text
github-actions[bot] edited this page Aug 30, 2024
·
17 revisions
AzureML Responsible AI Text environment.
Version: 5
OS : Ubuntu20.04
Training
Preview
View in Studio: https://ml.azure.com/registries/azureml/environments/responsibleai-text/version/5
Docker image: mcr.microsoft.com/azureml/curated/responsibleai-text:5
FROM mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04:20240818.v1
ENV AZUREML_CONDA_ENVIRONMENT_PATH /azureml-envs/responsibleai-text
# Prepend path to AzureML conda environment
ENV PATH $AZUREML_CONDA_ENVIRONMENT_PATH/bin:$PATH
# Create conda environment
COPY conda_dependencies.yaml .
RUN conda env create -p $AZUREML_CONDA_ENVIRONMENT_PATH -f conda_dependencies.yaml -q && \
rm conda_dependencies.yaml && \
conda run -p $AZUREML_CONDA_ENVIRONMENT_PATH pip cache purge && \
conda clean -a -y
RUN conda list
# Conda install and pip install could happen side by side. Remove crypytography with vulnerability from conda
RUN conda remove cryptography
RUN pip install --pre 'azure-ai-ml' 'azure-storage-blob<=12.13.0' 'numpy<1.24.0'
# Install main azureml packages
RUN pip install 'azureml-core==1.57.0' \
'azureml-mlflow==1.57.0.post1' \
'azureml-rai-utils==0.0.6'
RUN pip install 'azureml-dataset-runtime==1.57.0' \
'azureml-telemetry==1.57.0' \
'gunicorn>=22.0.0'
# azureml-dataset-runtime[fuse] upper bound for pyarrow is 11.0.0
# so we install pyarrow in extra step to avoid conflict
RUN pip install 'pyarrow>=14.0.1'
# To resolve vulnerability issue regarding crytography
RUN pip install 'cryptography>=42.0.4'
# Install huggingface evaluate package from source
# see issue https://github.com/huggingface/datasets/issues/6182
RUN pip install git+https://github.com/huggingface/evaluate.git
# To resolve vulnerability issue
RUN pip install 'Werkzeug>=3.0.3'
RUN pip install 'tqdm>=4.66.3'
RUN pip freeze
# This is needed for mpi to locate libpython
ENV LD_LIBRARY_PATH $AZUREML_CONDA_ENVIRONMENT_PATH/lib:$LD_LIBRARY_PATH