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

Dockerfile 473 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
17
18
19
  1. FROM tensorflow/tensorflow:2.5.0-gpu
  2. RUN apt-get update
  3. RUN apt-get install -y vim
  4. # Requirement of opencv-python
  5. RUN apt-get install -y libgl1-mesa-glx
  6. # Install python packages
  7. RUN pip install --upgrade pip
  8. RUN pip install opencv-python==4.5.2.52
  9. RUN pip install matplotlib==3.3.4
  10. RUN pip install tensorflow-datasets==4.3.0
  11. RUN pip install albumentations==1.0.0
  12. RUN pip install jupyterlab==3.0.16
  13. RUN pip install calc4ap==1.0.1
  14. COPY . /yolov1-tf2
  15. WORKDIR /yolov1-tf2
Tip!

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

Comments

Loading...