toaster61 commited on
Commit
1fb7f0b
·
1 Parent(s): e3396ba

wait where is model.bin

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -10,7 +10,8 @@ RUN CMAKE_ARGS="-DLLAMA_BLAS=ON -DLLAMA_BLAS_VENDOR=OpenBLAS" pip install llama-
10
 
11
  # Installing wget and downloading model.
12
  RUN apt install wget -y
13
- RUN wget -O model.bin https://huggingface.co/OpenBuddy/openbuddy-ggml/resolve/main/openbuddy-openllama-3b-v10-q5_0.bin
 
14
  # You can use other models! Visit https://huggingface.co/OpenBuddy/openbuddy-ggml and choose model that u like!
15
  # Or u can comment this two RUNs and include in Space/repo/Docker image own model with name "model.bin".
16
 
 
10
 
11
  # Installing wget and downloading model.
12
  RUN apt install wget -y
13
+ RUN wget -q -O model.bin https://huggingface.co/OpenBuddy/openbuddy-ggml/resolve/main/openbuddy-openllama-3b-v10-q5_0.bin
14
+ RUN ls
15
  # You can use other models! Visit https://huggingface.co/OpenBuddy/openbuddy-ggml and choose model that u like!
16
  # Or u can comment this two RUNs and include in Space/repo/Docker image own model with name "model.bin".
17