Browse Source

update Dockerfile

5.0
Glenn Jocher 4 years ago
parent
commit
2dd43bc82a
1 changed files with 5 additions and 6 deletions
  1. +5
    -6
      Dockerfile

+ 5
- 6
Dockerfile View File

# Kill all image-based # Kill all image-based
# sudo docker kill $(sudo docker ps -a -q --filter ancestor=ultralytics/yolov5:latest) # sudo docker kill $(sudo docker ps -a -q --filter ancestor=ultralytics/yolov5:latest)


# Run bash for loop
# sudo docker run --gpus all --ipc=host ultralytics/yolov5:latest while true; do python3 train.py --evolve; done

# Bash into running container # Bash into running container
# sudo docker container exec -it ba65811811ab bash # sudo docker container exec -it ba65811811ab bash
# python -c "from utils.utils import *; create_pretrained('weights/last.pt')" && gsutil cp weights/pretrained.pt gs://*


# Bash into stopped container # Bash into stopped container
# sudo docker commit 6d525e299258 user/test_image && sudo docker run -it --gpus all --ipc=host -v "$(pwd)"/coco:/usr/src/coco --entrypoint=sh user/test_image
# sudo docker commit 092b16b25c5b usr/resume && sudo docker run -it --gpus all --ipc=host -v "$(pwd)"/coco:/usr/src/coco --entrypoint=sh usr/resume

# Send weights to GCP
# python -c "from utils.utils import *; create_pretrained('path/last.pt')" && gsutil cp weights/pretrained.pt gs://*


# Clean up # Clean up
# docker system prune -a --volumes
# docker system prune -a --volumes

Loading…
Cancel
Save