Skip to content

environments acft mmdetection image gpu

github-actions[bot] edited this page Sep 19, 2024 · 74 revisions

acft-mmdetection-image-gpu

Overview

Environment used by MMDetection Image Finetune components

Version: 43

Tags

Preview

View in Studio: https://ml.azure.com/registries/azureml/environments/acft-mmdetection-image-gpu/version/43

Docker image: mcr.microsoft.com/azureml/curated/acft-mmdetection-image-gpu:43

Docker build context

Dockerfile

# PTCA image
FROM mcr.microsoft.com/aifx/acpt/stable-ubuntu2004-cu118-py310-torch222:biweekly.202409.2

USER root
RUN apt-get -y update

# Install required packages from pypi
COPY requirements.txt .
RUN pip install -r requirements.txt --no-cache-dir

# # # Install mmdet
# # Note that MMDet installs pycocotools
# Note: mmdet should be installed via mim to access the model zoo config folder.
RUN mim install mmdet==3.3.0

# Vulnerability Fix
RUN pip install gunicorn==22.0.0

# dummy number to change when needing to force rebuild without changing the definition: 1
Clone this wiki locally