Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

docker-compose.yml 497 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  1. version: '2.3'
  2. services:
  3. face_recognition:
  4. image: face_recognition
  5. container_name: face_recognition
  6. working_dir: /face_recognition/examples
  7. build:
  8. context: .
  9. #Uncomment this line to run the example on the GPU (requires Nvidia-Docker)
  10. # dockerfile: Dockerfile.gpu
  11. command: python3 -u find_faces_in_picture_cnn.py
  12. volumes:
  13. - ./:/face_recognition
  14. #Uncomment this line to run the example on the GPU (requires Nvidia-Docker)
  15. # runtime: nvidia
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...