From 197d978aae59f536c849ad9b771adeb923110655 Mon Sep 17 00:00:00 2001 From: Ashley Kleynhans Date: Mon, 5 Feb 2024 09:54:32 +0200 Subject: [PATCH] Revert oobabooga commit, latest seems to have issues loading the models --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 225eef2..15d15db 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Stage 1: Base FROM nvidia/cuda:12.1.1-cudnn8-devel-ubuntu22.04 as base -ARG OOBABOOGA_COMMIT=4f3fdf1b5ff6884b9899a3630b3ed9aae27decbf +ARG OOBABOOGA_COMMIT=d8c3a5bee814f09b0868474002105dcf21a3ff1a ARG TORCH_VERSION=2.2.0 SHELL ["/bin/bash", "-o", "pipefail", "-c"] @@ -87,9 +87,9 @@ RUN source /venv/bin/activate && \ pip3 install -r exllama/requirements.txt && \ deactivate -# Fix broken safetensors -RUN source /venv/bin/activate && \ - pip3 install -U safetensors==0.4.1 +## Fix broken safetensors +#RUN source /venv/bin/activate && \ +# pip3 install -U safetensors==0.4.1 # Install rclone RUN curl https://rclone.org/install.sh | bash