|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # YOLOv5 🚀 by Ultralytics, GPL-3.0 license
-
- # Start FROM NVIDIA PyTorch image https://ngc.nvidia.com/catalog/containers/nvidia:pytorch
- FROM nvcr.io/nvidia/pytorch:22.04-py3
- RUN rm -rf /opt/pytorch # remove 1.2GB dir
-
- # Downloads to user config dir
- ADD https://ultralytics.com/assets/Arial.ttf https://ultralytics.com/assets/Arial.Unicode.ttf /root/.config/Ultralytics/
-
- # Install linux packages
- RUN apt update && apt install -y zip htop screen libgl1-mesa-glx
-
- # Install pip packages
- COPY requirements.txt .
- RUN python -m pip install --upgrade pip
- RUN pip uninstall -y torch torchvision torchtext Pillow
- RUN pip install --no-cache -r requirements.txt albumentations wandb gsutil notebook Pillow>=9.1.0 \
- torch torchvision --extra-index-url https://download.pytorch.org/whl/cu113
-
- # Create working directory
- RUN mkdir -p /usr/src/app
- WORKDIR /usr/src/app
-
- # Copy contents
- COPY . /usr/src/app
- RUN git clone https://github.com/ultralytics/yolov5 /usr/src/yolov5
-
- # Set environment variables
- ENV OMP_NUM_THREADS=8
-
-
- # Usage Examples -------------------------------------------------------------------------------------------------------
-
- # Build and Push
- # t=ultralytics/yolov5:latest && sudo docker build -f utils/docker/Dockerfile -t $t . && sudo docker push $t
-
- # Pull and Run
- # t=ultralytics/yolov5:latest && sudo docker pull $t && sudo docker run -it --ipc=host --gpus all $t
-
- # Pull and Run with local directory access
- # t=ultralytics/yolov5:latest && sudo docker pull $t && sudo docker run -it --ipc=host --gpus all -v "$(pwd)"/datasets:/usr/src/datasets $t
-
- # Kill all
- # sudo docker kill $(sudo docker ps -q)
-
- # Kill all image-based
- # sudo docker kill $(sudo docker ps -qa --filter ancestor=ultralytics/yolov5:latest)
-
- # Bash into running container
- # sudo docker exec -it 5a9b5863d93d bash
-
- # Bash into stopped container
- # id=$(sudo docker ps -qa) && sudo docker start $id && sudo docker exec -it $id bash
-
- # Clean up
- # docker system prune -a --volumes
-
- # Update Ubuntu drivers
- # https://www.maketecheasier.com/install-nvidia-drivers-ubuntu/
-
- # DDP test
- # python -m torch.distributed.run --nproc_per_node 2 --master_port 1 train.py --epochs 3
-
- # GCP VM from Image
- # docker.io/ultralytics/yolov5:latest
|