glenn-jocher commited on
Commit
893a905
1 Parent(s): 7960c4c
Files changed (2) hide show
  1. .github/workflows/greetings.yml +1 -1
  2. Dockerfile +3 -3
.github/workflows/greetings.yml CHANGED
@@ -20,4 +20,4 @@ jobs:
20
  - **Edge AI** integrated into custom iOS and Android apps for realtime **30 FPS video inference.**
21
  - **Custom data training**, hyperparameter evolution, and model exportation to any destination.
22
 
23
- To discuss your business requirements in greater detail please visit us at https://www.ultralytics.com.
 
20
  - **Edge AI** integrated into custom iOS and Android apps for realtime **30 FPS video inference.**
21
  - **Custom data training**, hyperparameter evolution, and model exportation to any destination.
22
 
23
+ To discuss your business requirements in greater detail please visit us at https://www.ultralytics.com.
Dockerfile CHANGED
@@ -39,11 +39,11 @@ COPY . /usr/src/app
39
  # Run bash for loop
40
  # sudo docker run --gpus all --ipc=host ultralytics/yolov5:latest while true; do python3 train.py --evolve; done
41
 
42
- # Bash in running container
43
  # sudo docker container exec -it 97919ad657de /bin/bash
44
 
45
- # Bash last stopped container
46
- # python -c "from utils.utils import *; create_backbone('weights/best.pt')" && gsutil cp weights/backbone.pt gs://ult/coco/yolov5s.pt
47
 
48
  # Clean up
49
  # docker system prune -a --volumes
 
39
  # Run bash for loop
40
  # sudo docker run --gpus all --ipc=host ultralytics/yolov5:latest while true; do python3 train.py --evolve; done
41
 
42
+ # Bash into running container
43
  # sudo docker container exec -it 97919ad657de /bin/bash
44
 
45
+ # Bash into stopped container
46
+ # 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
47
 
48
  # Clean up
49
  # docker system prune -a --volumes