-
Notifications
You must be signed in to change notification settings - Fork 124
environments sklearn 1.5
github-actions[bot] edited this page Oct 26, 2024
·
14 revisions
An environment for tasks such as regression, clustering, and classification with Scikit-learn. Contains the Azure ML SDK and additional python packages.
Version: 13
Scikit-learn : 1.5
OS : Ubuntu20.04
Training
Preview
OpenMpi : 4.1.0
Python : 3.10
View in Studio: https://ml.azure.com/registries/azureml/environments/sklearn-1.5/version/13
Docker image: mcr.microsoft.com/azureml/curated/sklearn-1.5:13
FROM mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu20.04:20241020.v1
WORKDIR /
ENV CONDA_PREFIX=/azureml-envs/sklearn-1.5
ENV CONDA_DEFAULT_ENV=$CONDA_PREFIX
ENV PATH=$CONDA_PREFIX/bin:$PATH
# This is needed for mpi to locate libpython
ENV LD_LIBRARY_PATH=$CONDA_PREFIX/lib:$LD_LIBRARY_PATH
# Create conda environment
COPY conda_dependencies.yaml .
RUN conda env create -p $CONDA_PREFIX -f conda_dependencies.yaml -q && \
rm conda_dependencies.yaml && \
conda run -p $CONDA_PREFIX pip cache purge && \
conda clean -a -y