Skip to content
This repository has been archived by the owner on Jul 18, 2024. It is now read-only.

Commit

Permalink
update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouyu5 committed Oct 26, 2023
1 parent db0a1cb commit 7280bf7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile-ubuntu/Dockerfile-v1.2
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ RUN apt-get -y update \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN pip install torch==1.13.0 transformers datasets accelerate SentencePiece \
RUN pip install torch>=1.13.1 transformers datasets SentencePiece \
evaluate peft==0.4.0 torchsummary \
nltk rouge_score protobuf==3.20.1 tokenizers einops wandb \
nltk rouge_score einops wandb \
sigopt

RUN pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions e2eAIOK/deltatuner/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ RUN conda init bash && \
conda create -yn chatbot-finetuning python=3.9 && \
echo "conda activate chatbot-finetuning" >> ~/.bashrc && \
source ~/.bashrc && \
pip install torch==1.13.0 transformers datasets accelerate SentencePiece \
pip install torch>=1.13.1 transformers datasets SentencePiece \
evaluate peft==0.4.0 torchsummary \
nltk rouge_score protobuf==3.20.1 tokenizers einops wandb \
nltk rouge_score einops wandb \
sigopt
2 changes: 1 addition & 1 deletion e2eAIOK/deltatuner/docker/DockerfileGPU
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RUN conda init bash && \
source ~/.bashrc && \
pip install transformers datasets accelerate SentencePiece \
peft==0.4.0 torchsummary sigopt evaluate \
nltk rouge_score protobuf==3.20.1 tokenizers einops \
nltk rouge_score tokenizers einops \
wandb

RUN git clone https://github.com/EleutherAI/lm-evaluation-harness.git ~/lm-evaluation-harness && \
Expand Down
2 changes: 1 addition & 1 deletion e2eAIOK/deltatuner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
VERSION = fh.read().strip()

REQUIRED_PACKAGES = [
'torch>=1.13.0', 'transformers', 'datasets', 'sentencepiece',
'torch>=1.13.1', 'transformers', 'datasets', 'sentencepiece',
'peft==0.4.0', 'evaluate', 'nltk', 'rouge_score', 'einops',
'sigopt', 'torchsummary'
]
Expand Down

0 comments on commit 7280bf7

Please sign in to comment.