Dockerfile 294 Bytes
Newer Older
wangsen's avatar
wangsen committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM nvcr.io/nvidia/pytorch:23.09-py3

RUN pip install -U faiss-gpu

RUN apt update

RUN apt install -qy htop

RUN pip install -U transformers

RUN pip install --upgrade google-api-python-client

RUN pip install sentencepiece

RUN pip install h5py

RUN pip install nltk

RUN pip install einops