-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
executable file
·29 lines (22 loc) · 1.01 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
FROM python:3.11
# Set environment variables
ENV jax_threefry_partitionable=1
# Install base utilities
RUN apt-get update && \
apt-get install -y build-essential && \
apt-get install -y net-tools iproute2 procps ethtool && \
apt-get install -y wget && \
apt-get install -y git && \
apt-get install -y gcc && \
rm -rf /var/lib/apt/lists/*
RUN pip3 install Ipython matplotlib
RUN pip3 install numpy pandas scipy
RUN pip3 install -U -q jax[tpu] -f https://storage.googleapis.com/jax-releases/libtpu_releases.html
RUN pip3 install -q transformers datasets scalax tokenizers icecream wandb einops torch tqdm jaxtyping optax optuna equinox rich
RUN pip3 install -U optuna-integration plotly lm-eval pdbpp
RUN pip3 install git+https://github.com/deepmind/jmp
RUN pip3 install git+https://github.com/Findus23/jax-array-info.git
RUN pip3 install -q tensorboard-plugin-profile tensorboard etils importlib_resources "cloud-tpu-profiler>=2.3.0"
WORKDIR /ReAct_Jax
# Set the entry point to bash
ENTRYPOINT ["/bin/bash"]