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.cpu 279 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
  1. FROM tensorflow/tensorflow:1.12.0-py3
  2. ENV LANG=C.UTF-8
  3. RUN mkdir /gpt-2
  4. WORKDIR /gpt-2
  5. ADD . /gpt-2
  6. RUN pip3 install -r requirements.txt
  7. RUN python3 download_model.py 124M
  8. RUN python3 download_model.py 355M
  9. RUN python3 download_model.py 774M
  10. RUN python3 download_model.py 1558M
Tip!

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

Comments

Loading...