| |
| |
| |
| |
| FROM continuumio/miniconda3:latest AS compile-image |
| |
| ENV PYTHON_VERSION=3.11 |
| |
| |
| RUN apt-get update && \ |
| apt-get install -y curl git wget software-properties-common git-lfs ffmpeg libsndfile1-dev && \ |
| apt-get clean && \ |
| rm -rf /var/lib/apt/lists* |
|
|
| RUN git lfs install |
|
|
| |
| RUN conda create --name peft python=${PYTHON_VERSION} ipython jupyter pip |
|
|
| |
| |
| |
| ENV PATH /opt/conda/envs/peft/bin:$PATH |
| |
| RUN chsh -s /bin/bash |
| SHELL ["/bin/bash", "-c"] |
|
|
| |
| FROM nvidia/cuda:12.4.1-devel-ubuntu22.04 AS build-image |
| COPY --from=compile-image /opt/conda /opt/conda |
| ENV PATH /opt/conda/bin:$PATH |
|
|
| |
| RUN apt-get update && \ |
| apt-get install -y curl git wget && \ |
| apt-get clean && \ |
| rm -rf /var/lib/apt/lists* |
|
|
| RUN chsh -s /bin/bash |
| SHELL ["/bin/bash", "-c"] |
| RUN source activate peft && \ |
| python3 -m pip install --no-cache-dir bitsandbytes optimum auto-gptq && \ |
| |
| python3 -m pip install --no-cache-dir https://github.com/casper-hansen/AutoAWQ/releases/download/v0.2.7.post2/autoawq-0.2.7.post2-py3-none-any.whl && \ |
| python3 -m pip install --no-cache-dir https://github.com/casper-hansen/AutoAWQ_kernels/releases/download/v0.0.9/autoawq_kernels-0.0.9-cp311-cp311-linux_x86_64.whl && \ |
| |
| python3 -m pip install git+https://github.com/NetEase-FuXi/EETQ.git |
|
|
| |
| RUN source activate peft && \ |
| python3 -m pip install -U --no-cache-dir \ |
| librosa \ |
| "soundfile>=0.12.1" \ |
| scipy \ |
| torchao \ |
| git+https://github.com/huggingface/transformers \ |
| git+https://github.com/huggingface/accelerate \ |
| peft[test]@git+https://github.com/huggingface/peft \ |
| |
| aqlm[gpu]>=1.0.2 \ |
| |
| hqq |
|
|
| RUN source activate peft && \ |
| pip freeze | grep transformers |
|
|
| RUN echo "source activate peft" >> ~/.profile |
|
|
| |
| CMD ["/bin/bash"] |
|
|