Browse Source

updates

5.0
Glenn Jocher 4 years ago
parent
commit
893a9059e9
2 changed files with 4 additions and 4 deletions
  1. +1
    -1
      .github/workflows/greetings.yml
  2. +3
    -3
      Dockerfile

+ 1
- 1
.github/workflows/greetings.yml View File

@@ -20,4 +20,4 @@ jobs:
- **Edge AI** integrated into custom iOS and Android apps for realtime **30 FPS video inference.**
- **Custom data training**, hyperparameter evolution, and model exportation to any destination.

To discuss your business requirements in greater detail please visit us at https://www.ultralytics.com.
To discuss your business requirements in greater detail please visit us at https://www.ultralytics.com.

+ 3
- 3
Dockerfile View File

@@ -39,11 +39,11 @@ COPY . /usr/src/app
# Run bash for loop
# sudo docker run --gpus all --ipc=host ultralytics/yolov5:latest while true; do python3 train.py --evolve; done

# Bash in running container
# Bash into running container
# sudo docker container exec -it 97919ad657de /bin/bash

# Bash last stopped container
# python -c "from utils.utils import *; create_backbone('weights/best.pt')" && gsutil cp weights/backbone.pt gs://ult/coco/yolov5s.pt
# 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

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

Loading…
Cancel
Save