Spaces:
Sleeping
Sleeping
change model
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -5,7 +5,7 @@ FROM python:3.11.5-slim-bookworm
|
|
5 |
USER root
|
6 |
|
7 |
# Installing gcc compiler and main library.
|
8 |
-
RUN apt update && apt install gcc cmake build-essential -y
|
9 |
RUN CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama-cpp-python
|
10 |
|
11 |
# Copying files into folder and making it working dir.
|
@@ -19,7 +19,7 @@ RUN mkdir translator
|
|
19 |
RUN chmod -R 777 translator
|
20 |
|
21 |
# Installing wget and downloading model.
|
22 |
-
ADD https://huggingface.co/
|
23 |
RUN chmod -R 777 /app/model.bin
|
24 |
# You can use other models! Or u can comment this two RUNs and include in Space/repo/Docker image own model with name "model.bin".
|
25 |
|
|
|
5 |
USER root
|
6 |
|
7 |
# Installing gcc compiler and main library.
|
8 |
+
RUN apt update && apt install wget gcc cmake build-essential -y
|
9 |
RUN CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama-cpp-python
|
10 |
|
11 |
# Copying files into folder and making it working dir.
|
|
|
19 |
RUN chmod -R 777 translator
|
20 |
|
21 |
# Installing wget and downloading model.
|
22 |
+
ADD https://huggingface.co/NousResearch/Hermes-2-Pro-Mistral-7B-GGUF/resolve/main/Hermes-2-Pro-Mistral-7B.Q4_K_M.gguf /app/model.bin
|
23 |
RUN chmod -R 777 /app/model.bin
|
24 |
# You can use other models! Or u can comment this two RUNs and include in Space/repo/Docker image own model with name "model.bin".
|
25 |
|