You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							50 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
	
	
							50 lines
						
					
					
						
							1.6 KiB
						
					
					
				| # Start FROM Nvidia PyTorch image https://ngc.nvidia.com/catalog/containers/nvidia:pytorch
 | |
| FROM nvcr.io/nvidia/pytorch:20.03-py3
 | |
| RUN pip install -U gsutil
 | |
| 
 | |
| # Create working directory
 | |
| RUN mkdir -p /usr/src/app
 | |
| WORKDIR /usr/src/app
 | |
| 
 | |
| # Copy contents
 | |
| COPY . /usr/src/app
 | |
| 
 | |
| # Install dependencies (pip or conda)
 | |
| #RUN pip install -r requirements.txt
 | |
| 
 | |
| # Copy weights
 | |
| #RUN python3 -c "from models import *; \
 | |
| #attempt_download('weights/yolov5s.pt'); \
 | |
| #attempt_download('weights/yolov5m.pt'); \
 | |
| #attempt_download('weights/yolov5l.pt')"
 | |
| 
 | |
| 
 | |
| # ---------------------------------------------------  Extras Below  ---------------------------------------------------
 | |
| 
 | |
| # Build and Push
 | |
| # t=ultralytics/yolov5:latest && sudo docker build -t $t . && sudo docker push $t
 | |
| 
 | |
| # Pull and Run
 | |
| # t=ultralytics/yolov5:latest && sudo docker pull $t && sudo docker run -it --ipc=host $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)"/coco:/usr/src/coco $t
 | |
| 
 | |
| # Kill all
 | |
| # sudo docker kill "$(sudo docker ps -q)"
 | |
| 
 | |
| # Kill all image-based
 | |
| # sudo docker kill $(sudo docker ps -a -q --filter ancestor=ultralytics/yolov5:latest)
 | |
| 
 | |
| # Bash into running container
 | |
| # sudo docker container exec -it ba65811811ab bash
 | |
| 
 | |
| # Bash into stopped container
 | |
| # 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
 | |
| # docker system prune -a --volumes
 |