Jae-Won Chung commited on
Commit
b9c6dec
1 Parent(s): 93263f1

Install zeus 0.4.0 from pypi

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -8
Dockerfile CHANGED
@@ -20,14 +20,8 @@ RUN mkdir -p /root/.local \
20
  && rm -f Miniconda3-py39_23.3.1-0-Linux-x86_64.sh \
21
  && ln -sf /root/.local/miniconda3/etc/profile.d/conda.sh /etc/profile.d/conda.sh
22
 
23
- # Install PyTorch
24
- RUN pip install torch==2.0.1
25
-
26
- # Install the HEAD commit of Zeus (for ZeusMonitor)
27
- RUN git clone https://github.com/SymbioticLab/Zeus.git zeus \
28
- && cd zeus \
29
- && pip install -e . \
30
- && cd ..
31
 
32
  # Install requirements for benchmarking
33
  ADD . /workspace/leaderboard
 
20
  && rm -f Miniconda3-py39_23.3.1-0-Linux-x86_64.sh \
21
  && ln -sf /root/.local/miniconda3/etc/profile.d/conda.sh /etc/profile.d/conda.sh
22
 
23
+ # Install PyTorch and Zeus
24
+ RUN pip install torch==2.0.1 zeus-ml==0.4.0
 
 
 
 
 
 
25
 
26
  # Install requirements for benchmarking
27
  ADD . /workspace/leaderboard